1 package org.enhydra.shark.api.client.wfbase; 2 3 4 import org.enhydra.shark.api.*; 5 6 7 8 9 25 public final class BaseException extends RootException 26 { 27 public BaseError errors[] = null; 28 29 public BaseException () 30 { 31 super(); 32 } 34 public BaseException (BaseError[] _errors) 35 { 36 super(); 37 errors = _errors; 38 } 40 41 public BaseException (String $reason, BaseError[] _errors) 42 { 43 super($reason); 44 errors = _errors; 45 } public BaseException(String message) { 47 super(message); 48 } 49 public BaseException(Throwable cause) { 50 super(cause); 51 } 52 public BaseException(String message, Throwable cause) { 53 super(message, cause); 54 } 55 } | Popular Tags |