blob: 685b931f8c5e93ebc8e5289d0beab47a58114fa4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/*
* 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);
}
}
|