nyla.solutions.core.exception.TimeOutException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nyla.solutions.core Show documentation
Show all versions of nyla.solutions.core Show documentation
This Java API provides support for application utilities (application configuration, data encryption, debugger, text processing, and more).
The newest version!
package nyla.solutions.core.exception;
/**
* @author gregory green
* @version 1.0
*/
public class TimeOutException extends CommunicationException
{
public static final String TIMEOUT_MSG ="Time Out";
public TimeOutException()
{
super(TIMEOUT_MSG);
}
public TimeOutException(String msg)
{
super(msg);
}
static final long serialVersionUID = TimeOutException.class.getName()
.hashCode();
}