com.ivanceras.db.shared.exception.ModelDefinitionNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of orm Show documentation
Show all versions of orm Show documentation
ORM - Core Library for Database
/*******************************************************************************
* Copyright by CMIL
******************************************************************************/
package com.ivanceras.db.shared.exception;
public class ModelDefinitionNotFoundException extends Exception {
/**
*
*/
private static final long serialVersionUID = -6897249909981856817L;
public ModelDefinitionNotFoundException() {
super();
}
public ModelDefinitionNotFoundException(String msg) {
super(msg);
}
}