/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package exceptions; import javax.ejb.ApplicationException; /** * * @author jmueller */ @ApplicationException(rollback=true) public class AuftragsAbwicklungException extends Exception { private static final long serialVersionUID = 1L; public AuftragsAbwicklungException(String msg){ super("Auftrag konnte nicht Abgewickelt werden: " + msg); } }