
com.draagon.meta.manager.db.validator.TableDoesNotExistException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metaobjects-omdb Show documentation
Show all versions of metaobjects-omdb Show documentation
Relational Database ObjectManager libraries for MetaData-driven development.
The newest version!
package com.draagon.meta.manager.db.validator;
import com.draagon.meta.MetaException;
@SuppressWarnings("serial")
public class TableDoesNotExistException extends MetaException
{
public TableDoesNotExistException( String msg, Exception e ) {
super( msg, e );
}
public TableDoesNotExistException( String msg ) {
super( msg );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy