/* * 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 IdBereitsVergebenException extends Exception{ public IdBereitsVergebenException(String msg) { super(msg); } }