diff options
| author | cdgill <cdgill@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-01-07 22:46:07 +0000 |
|---|---|---|
| committer | cdgill <cdgill@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2001-01-07 22:46:07 +0000 |
| commit | 78552d9795151a325fe0d5701c2ea28c256ecdfb (patch) | |
| tree | 286780950a8cedb569ecf57846b511c114e9bf14 /java/EAC/TooManyPrimitivesException.java | |
| parent | 57e792805e7e43fbc649cc7efddbeff61f9aed87 (diff) | |
| download | ATCD-78552d9795151a325fe0d5701c2ea28c256ecdfb.tar.gz | |
moved EAC from ACE_wrappers to ACE_wrappers/java
Diffstat (limited to 'java/EAC/TooManyPrimitivesException.java')
| -rw-r--r-- | java/EAC/TooManyPrimitivesException.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/java/EAC/TooManyPrimitivesException.java b/java/EAC/TooManyPrimitivesException.java new file mode 100644 index 00000000000..d9cb8efa733 --- /dev/null +++ b/java/EAC/TooManyPrimitivesException.java @@ -0,0 +1,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); + } +}
\ No newline at end of file |
