org.hpccsystems.ws.client.wrappers.BaseExceptionWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wsclient Show documentation
Show all versions of wsclient Show documentation
This project allows a user to interact with ESP services in a controlled manner. The API calls available under org.hpccsystems.ws.client.platform allow for a user to target ESP's across multiple environments running a range of hpccsystems-platform versions. There is no guarantee that if a user utilizes org.hpccsystems.ws.client.gen generated stub code from wsdl, that the calls will be backwards compatible with older hpccsystems-platform versions.
package org.hpccsystems.ws.client.wrappers;
public class BaseExceptionWrapper
{
protected String source;
protected String message;
/**
* Sets the source.
*
* @param _source
* the new source
*/
public void setSource(String _source)
{
source = _source;
}
/**
* Gets the source.
*
* @return the source
*/
public String getSource()
{
return source;
}
/**
* Sets the message.
*
* @param _message
* the new message
*/
public void setMessage(String _message)
{
message = _message;
}
/**
* Gets the message.
*
* @return the message
*/
public String getMessage()
{
return message;
}
}