aboutsummaryrefslogtreecommitdiff
path: root/java/com/xagasoft/gats/KeyNotFoundException.java
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2012-10-24 15:41:33 +0000
committerMike Buland <eichlan@xagasoft.com>2012-10-24 15:41:33 +0000
commit04f48e8e0560f7c9d4ea883268a3abdbf3bf7d9c (patch)
tree3ef3925ea2aeebce1f48593186bf2e36b588def4 /java/com/xagasoft/gats/KeyNotFoundException.java
parentf200ec8a2d89c86edbfedc7cd04467e38e9a7786 (diff)
downloadlibgats-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.java8
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 @@
1package com.xagasoft.gats; 1package 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 */
3public class KeyNotFoundException extends Exception 11public class KeyNotFoundException extends Exception
4{ 12{
5 private Object oSrc = null; 13 private Object oSrc = null;