blob: d9cb8efa7331e16f23b9ec79494f8ffc72e28daf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/**
* Title: TooManyPrimitivesException
* Description: An exception class for when an attempt is made to add a
* primitives when the maximum number have already been added
*/
package EAC;
public class TooManyPrimitivesException extends Exception {
public TooManyPrimitivesException(String msg) {
super(msg);
}
}
|