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

com.es.plus.adapter.exception.EsException Maven / Gradle / Ivy

There is a newer version: 0.3.3
Show newest version
package com.es.plus.adapter.exception;

public class EsException extends RuntimeException {
    public EsException(String message) {
        super(message);
    }

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

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

    public EsException() {
        super();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy