GLS ShipIT
GLS ShipIT - REST services
 All Classes Namespaces Files Functions Variables Enumerator Pages
SOAPRequestValidationException.java
Go to the documentation of this file.
1 package eu.glsgroup.fpcs.soap.util;
2 
3 public class SOAPRequestValidationException extends RuntimeException {
4 
5  public SOAPRequestValidationException(String message, Throwable t) {
6  super(message, t);
7  }
8 
9  public SOAPRequestValidationException(String message) {
10  super(message);
11  }
12 
13  private static final long serialVersionUID = 7100556528451379265L;
14 
15 }