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

com.indeed.proctor.common.InvalidRuleException Maven / Gradle / Ivy

There is a newer version: 1.9.118-1950c8a
Show newest version
package com.indeed.proctor.common;

/** @author matts */
public class InvalidRuleException extends Exception {
    public InvalidRuleException(final String message) {
        super(message);
    }

    public InvalidRuleException(final Throwable throwable, final String message) {
        super(message, throwable);
    }

    private static final long serialVersionUID = 2401266961303036201L;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy