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