/*
 * NewClass.java
 *
 * Created on 9 de Setembro de 2006, 11:36
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package siscad;

import javax.swing.JOptionPane;

/**
 *
 * @author awolf
 */
public class Util {
    
    /** Creates a new instance of NewClass */
    public Util() {
    }
    
    static void Aviso(String Mensagem){
        JOptionPane.showMessageDialog(null,Mensagem,"Aviso",JOptionPane.INFORMATION_MESSAGE);
    }
    
}
