/* * CSP Project * Authors: * Jay Bernardo * Matt Rancourt * * File: CustomExceptions.java * * Contains various custom exceptions that are thrown by * other methods contained within the application. Exception * names are self explanitory and should not need to be detailed * individually */ class RelationNumberOutOfBoundsException extends Exception{ static final long serialVersionUID = 0x00000000; } class RankOutOfBoundsException extends Exception{ static final long serialVersionUID = 0x00000000; } class VariablePositionOutOfBoundsException extends Exception{ static final long serialVersionUID = 0x00000000; } class InvalidVariableNamesLengthException extends Exception{ static final long serialVersionUID = 0x00000000; } class InvalidVariableValueException extends Exception{ static final long serialVersionUID = 0x00000000; }