lajdlksadlmla
[rmh3093.git] / lab3 / ShapeException.java
blob217d8a3076751e22fe4914f25def909565aeb87f
1 /*
2 * ShapeException.java
4 * Version:
5 * $Id: ShapeException.java,v 1.2 2008/03/26 17:31:40 rmh3093 Exp $
7 * Revisions:
8 * $Log: ShapeException.java,v $
9 * Revision 1.2 2008/03/26 17:31:40 rmh3093
10 * add @author
12 * Revision 1.1 2008/03/26 17:05:55 rmh3093
13 * Initial revision
16 /**
17 * This class defines the object to be thrown by all subclasses that inherit
18 * from the abstract superclass Shape.
20 * @author Ryan Hope
22 public class ShapeException extends Exception {
24 /**
25 * Constructor for the ShapeException class. Shape objects will generate
26 * exceptions of this object type.
28 * @param message The string object used to construct the superclass
29 * Exception object.
31 public ShapeException(String message) {
32 super(message);