1 package de.spring.webservices.exceptions;
4 * This exception will be caught by org.springframework.ws.soap.server.endpoint.SoapFaultMappingExceptionResolver
7 public class BusinessException extends RuntimeException {
9 private static final long serialVersionUID = -4042139454770293299L;
11 public BusinessException() {
15 public BusinessException(String message) {
19 public BusinessException(String message, Throwable cause) {
20 super(message, cause);