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

io.soffa.commons.exceptions.ResourceNotFoundException Maven / Gradle / Ivy



package io.soffa.commons.exceptions;

import java.text.MessageFormat;

public class ResourceNotFoundException extends FunctionalException {

    public ResourceNotFoundException(String message, Object... args) {
        super(MessageFormat.format(message, args));
    }

    public ResourceNotFoundException(Throwable cause, String message, Object... args) {
        super(cause, message, args);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy