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

org.znerd.logdoc.NoSuchResourceException Maven / Gradle / Ivy

There is a newer version: 1.0-rc3
Show newest version
// See the COPYRIGHT file for copyright and license information
package org.znerd.logdoc;

/**
 * Exception that indicates that a meta data resource could not be found.
 */
public class NoSuchResourceException extends RuntimeException {

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

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

    private static final long serialVersionUID = 8394805671837180263L;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy