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

com.cybermkd.common.entity.exception.EntityException Maven / Gradle / Ivy

There is a newer version: 1.0.1.3
Show newest version
package com.cybermkd.common.entity.exception;

/**
 * ModelException
 */
public class EntityException extends RuntimeException {

    public EntityException() {
    }

    public EntityException(String message) {
        super(message);
    }

    public EntityException(Throwable cause) {
        super(cause);
    }

    public EntityException(String message, Throwable cause) {
        super(message, cause);
    }
}














© 2015 - 2024 Weber Informatics LLC | Privacy Policy