com.brentcroft.tools.model.ModelException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of el-model Show documentation
Show all versions of el-model Show documentation
Hierarchical Map, materialized from JSON, XML and properties, supporting EL plates.
package com.brentcroft.tools.model;
import lombok.NoArgsConstructor;
@NoArgsConstructor
public class ModelException extends RuntimeException
{
ModelException( String message )
{
super( message );
}
ModelException( String message, Throwable cause )
{
super( message, cause );
}
}