All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.brentcroft.tools.model.ModelException Maven / Gradle / Ivy

Go to download

Hierarchical Map, materialized from JSON, XML and properties, supporting EL plates.

There is a newer version: 01.01.33
Show newest version
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 );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy