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

io.katharsis.resource.exception.ResourceNotFoundException Maven / Gradle / Ivy

There is a newer version: 2.6.3
Show newest version
package io.katharsis.resource.exception;

import io.katharsis.errorhandling.exception.KatharsisMatchingException;

/**
 * Thrown when resource for a type cannot be found.
 */
public final class ResourceNotFoundException extends KatharsisMatchingException {

    public ResourceNotFoundException(String path) {
        super(path);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy