ManifestException.java

package network.ike.workspace;

/**
 * Thrown when a workspace manifest cannot be read or has invalid structure.
 */
public class ManifestException extends RuntimeException {

    private static final long serialVersionUID = 1L;

    /**
     * Create an exception with a message.
     * @param message description of the manifest problem
     */
    public ManifestException(String message) {
        super(message);
    }

    /**
     * Create an exception with a message and cause.
     * @param message description of the manifest problem
     * @param cause   underlying exception
     */
    public ManifestException(String message, Throwable cause) {
        super(message, cause);
    }
}