diff options
author | Mike Buland <eichlan@xagasoft.com> | 2012-10-24 15:41:33 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2012-10-24 15:41:33 +0000 |
commit | 04f48e8e0560f7c9d4ea883268a3abdbf3bf7d9c (patch) | |
tree | 3ef3925ea2aeebce1f48593186bf2e36b588def4 /java/com/xagasoft/gats/KeyNotFoundException.java | |
parent | f200ec8a2d89c86edbfedc7cd04467e38e9a7786 (diff) | |
download | libgats-04f48e8e0560f7c9d4ea883268a3abdbf3bf7d9c.tar.gz libgats-04f48e8e0560f7c9d4ea883268a3abdbf3bf7d9c.tar.bz2 libgats-04f48e8e0560f7c9d4ea883268a3abdbf3bf7d9c.tar.xz libgats-04f48e8e0560f7c9d4ea883268a3abdbf3bf7d9c.zip |
Primarily documentation cleanups. Also removed some extra imports that are
no longer used.
Diffstat (limited to '')
-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; |