/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package exceptions; import javax.ejb.ApplicationException; /** * * @author Jan */ @ApplicationException(rollback=true) public class IllegalerWertException extends Exception { public IllegalerWertException(String msg) { super(msg); } public IllegalerWertException(String variablenName, Object wert) { super("Illegaler Wert: [" + variablenName+ " = " + wert.toString() +"]"); } }