All Downloads are FREE. Search and download functionalities are using the official Maven repository.

nyla.solutions.core.exception.TimeOutException Maven / Gradle / Ivy

Go to download

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy