GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
SOAPException.java
Go to the documentation of this file.
1 package eu.glsgroup.fpcs.soap.util;
2 
3 import javax.ejb.ApplicationException;
4 
5 @ApplicationException(rollback = true)
6 public class SOAPException extends Exception {
7 
8  private static final long serialVersionUID = -3684473122506399584L;
9 
10  public SOAPException() {
11 
12  super();
13  }
14 
15  public SOAPException(final String message) {
16 
17  super(message);
18  }
19 
20  public SOAPException(final String message, final Throwable cause) {
21 
22  super(message, cause);
23  }
24 
25  public SOAPException(final Throwable cause) {
26 
27  super(cause);
28  }
29 
30  protected SOAPException(final String message,
31  final Throwable cause,
32  final boolean enableSuppression,
33  final boolean writableStackTrace) {
34 
35  super(message, cause, enableSuppression, writableStackTrace);
36  }
37 }