f13ae91347b2e398de0e9345e2861046df88847b
[SpringWebServicesForFun/.git] /
1 package de.spring.webservices.exceptions;
2
3 /**
4  * This exception will be caught by org.springframework.ws.soap.server.endpoint.SoapFaultMappingExceptionResolver
5  *
6  */
7 public class BusinessException extends RuntimeException {
8
9         private static final long serialVersionUID = -4042139454770293299L;
10
11         public BusinessException() {
12         super();
13     }
14
15     public BusinessException(String message) {
16         super(message);
17     }
18
19     public BusinessException(String message, Throwable cause) {
20         super(message, cause);
21     }
22 }