Class ArrayOfBaseExceptionWrapper
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.hpccsystems.ws.client.wrappers.ArrayOfBaseExceptionWrapper
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ArrayOfECLExceptionWrapper
,ArrayOfEspExceptionWrapper
public class ArrayOfBaseExceptionWrapper extends Exception
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<BaseExceptionWrapper>
exceptions
protected String
source
protected String
wsClientMessage
-
Constructor Summary
Constructors Constructor Description ArrayOfBaseExceptionWrapper()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<BaseExceptionWrapper>
getExceptions()
Gets the exceptions.String
getLocalizedMessage()
String
getMessage()
String
getSource()
Gets the source.String
getWsClientMessage()
Gets the ws client message.void
setExceptions(List<BaseExceptionWrapper> _exception)
Sets the exceptions.void
setSource(String _source)
Sets the source.-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Field Detail
-
wsClientMessage
protected String wsClientMessage
-
source
protected String source
-
exceptions
protected List<BaseExceptionWrapper> exceptions
-
-
Method Detail
-
getWsClientMessage
public String getWsClientMessage()
Gets the ws client message.- Returns:
- the localMessage
-
setSource
public void setSource(String _source)
Sets the source.- Parameters:
_source
- the new source
-
getSource
public String getSource()
Gets the source.- Returns:
- the source
-
getLocalizedMessage
public String getLocalizedMessage()
- Overrides:
getLocalizedMessage
in classThrowable
-
getMessage
public String getMessage()
- Overrides:
getMessage
in classThrowable
-
setExceptions
public void setExceptions(List<BaseExceptionWrapper> _exception)
Sets the exceptions.- Parameters:
_exception
- the new exceptions
-
getExceptions
public List<BaseExceptionWrapper> getExceptions()
Gets the exceptions.- Returns:
- the exceptions
-
-