diff options
Diffstat (limited to 'java/com/xagasoft/gats/KeyNotFoundException.java')
-rw-r--r-- | java/com/xagasoft/gats/KeyNotFoundException.java | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/java/com/xagasoft/gats/KeyNotFoundException.java b/java/com/xagasoft/gats/KeyNotFoundException.java index d46fc47..4b75847 100644 --- a/java/com/xagasoft/gats/KeyNotFoundException.java +++ b/java/com/xagasoft/gats/KeyNotFoundException.java | |||
@@ -1,5 +1,13 @@ | |||
1 | package com.xagasoft.gats; | 1 | package com.xagasoft.gats; |
2 | 2 | ||
3 | /** | ||
4 | * This exception is thrown by the container classes in Gats when one of the | ||
5 | * casting helper functions is used to extract a value. In those cases, | ||
6 | * in java we could still potentially return a null (at least if we were | ||
7 | * using object types). This has a couple of advantages when working with | ||
8 | * non-object types, and maintains compatability with other implementations | ||
9 | * of the Gats library. | ||
10 | */ | ||
3 | public class KeyNotFoundException extends Exception | 11 | public class KeyNotFoundException extends Exception |
4 | { | 12 | { |
5 | private Object oSrc = null; | 13 | private Object oSrc = null; |