Package org.utplsql.api.exception
Class DatabaseNotCompatibleException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.sql.SQLException
-
- org.utplsql.api.exception.DatabaseNotCompatibleException
-
- All Implemented Interfaces:
Serializable,Iterable<Throwable>
public class DatabaseNotCompatibleException extends SQLException
Custom exception to indicate API is not compatible with database framework- Author:
- pesse
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DatabaseNotCompatibleException(String message, Version clientVersion, Version databaseVersion, Throwable cause)DatabaseNotCompatibleException(Version databaseVersion)DatabaseNotCompatibleException(Version databaseVersion, Throwable cause)DatabaseNotCompatibleException(Version clientVersion, Version databaseVersion)DatabaseNotCompatibleException(Version clientVersion, Version databaseVersion, Throwable cause)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description VersiongetClientVersion()VersiongetDatabaseVersion()-
Methods inherited from class java.sql.SQLException
getErrorCode, getNextException, getSQLState, iterator, setNextException
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Constructor Detail
-
DatabaseNotCompatibleException
public DatabaseNotCompatibleException(String message, Version clientVersion, Version databaseVersion, Throwable cause)
-
DatabaseNotCompatibleException
public DatabaseNotCompatibleException(Version clientVersion, Version databaseVersion, Throwable cause)
-
DatabaseNotCompatibleException
public DatabaseNotCompatibleException(Version clientVersion, Version databaseVersion)
-
DatabaseNotCompatibleException
public DatabaseNotCompatibleException(Version databaseVersion, Throwable cause)
-
DatabaseNotCompatibleException
public DatabaseNotCompatibleException(Version databaseVersion)
-
-