Class NoConnectionException

java.lang.Object
java.lang.Throwable
java.lang.Exception
io.github.coho04.mysql.exceptions.NoConnectionException
All Implemented Interfaces:
Serializable

public class NoConnectionException extends Exception
The NoConnectionException is an exception thrown when there is no connection to the MySQL server. It extends the Exception class.
See Also:
  • Constructor Details

    • NoConnectionException

      public NoConnectionException(String message)
      NoConnectionException is an exception thrown when there is no connection to the MySQL server. It extends the Exception class.
    • NoConnectionException

      public NoConnectionException(String message, Throwable cause)
      Creates a new instance of NoConnectionException with the specified detail message and cause.
      Parameters:
      message - the detail message (which is saved for later retrieval by the Throwable.getMessage() method).
      cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). A null value is permitted.