com.droidlogix.sqlite.datahandler.exceptions.SqliteDriverNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sqlite-datahandler Show documentation
Show all versions of sqlite-datahandler Show documentation
A Helper Library for SQLite
package com.droidlogix.sqlite.datahandler.exceptions;
public class SqliteDriverNotFoundException extends Exception
{
public SqliteDriverNotFoundException()
{
super();
}
public SqliteDriverNotFoundException(String message)
{
super(message);
}
}