1 7 package org.exoplatform.services.wsrp.exceptions; 8 9 13 public class WSRPException extends Exception { 14 15 private String fault; 16 17 public WSRPException() { 18 this("unknown", null); 19 } 20 21 public WSRPException(String fault) { 22 this(fault, null); 23 } 24 25 public WSRPException(String fault, Throwable t){ 26 super("fault : " + fault, t); 27 this.fault = fault; 28 } 29 30 public String getFault() { 31 return fault; 32 } 33 34 } 35 | Popular Tags |