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

io.lsn.java.common.exception.DictionaryItemNotFoundException Maven / Gradle / Ivy

package io.lsn.java.common.exception;

/**
 * Created by tomek on 18.11.2016.
 */
public class DictionaryItemNotFoundException extends Exception {

    public DictionaryItemNotFoundException() {
        super();
    }

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

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

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

    protected DictionaryItemNotFoundException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy