Game-of-Life-WSU-CEG4180  v0.1
RefactoringtheGameofLife
ShapeException.java
Go to the documentation of this file.
1 /* This page is part of the Game of Life source code */
2 
3 /**
4  * Copyright 1996-2004 Edwin Martin <edwin@bitstorm.nl>
5  * @author Edwin Martin
6  */
7 
8 package org.bitstorm.gameoflife;
9 
10 /**
11  * Exception for shapes (too big, not found...).
12  *
13  * @author Edwin Martin
14  */
15 public class ShapeException extends Exception {
16  /**
17  * Constructs a ShapeException.
18  */
19  public ShapeException() {
20  super();
21  }
22  /**
23  * Constructs a ShapeException with a description.
24  */
25  public ShapeException( String s ) {
26  super( s );
27  }
28 }