001/*
002 * $Id$
003 */
004
005package edu.jas.root;
006
007
008/**
009 * Invalid boundary exception class. Exception to be thrown when a valid
010 * boundary cannot be constructed.
011 * @author Heinz Kredel
012 */
013
014public class InvalidBoundaryException extends Exception {
015
016
017    public InvalidBoundaryException() {
018        super("InvalidBoundaryException");
019    }
020
021
022    public InvalidBoundaryException(String c) {
023        super(c);
024    }
025
026
027    public InvalidBoundaryException(String c, Throwable t) {
028        super(c, t);
029    }
030
031
032    public InvalidBoundaryException(Throwable t) {
033        super("InvalidBoundaryException", t);
034    }
035
036}