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

me.legrange.panstamp.NoSuchEndpointException Maven / Gradle / Ivy

package me.legrange.panstamp;

import me.legrange.panstamp.definition.DefinitionException;

/**
 * Thrown if an endpoint cannot be found. 
 * 
 * @since 1.0
 * @author Gideon le Grange https://github.com/GideonLeGrange *
 */
class NoSuchEndpointException extends DefinitionException {

   NoSuchEndpointException(String message) {
        super(message);
    }

    NoSuchEndpointException(String message, Throwable cause) {
        super(message, cause);
    }
    
    
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy