aboutsummaryrefslogtreecommitdiff
path: root/java/com/xagasoft/gats/KeyNotFoundException.java
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2012-10-24 15:48:04 +0000
committerMike Buland <eichlan@xagasoft.com>2012-10-24 15:48:04 +0000
commitd9b407475ae3ebe434b29d9eabdd7d4416e17881 (patch)
treea534a268f9e131e64958ca746d912398efbae3db /java/com/xagasoft/gats/KeyNotFoundException.java
parent04f48e8e0560f7c9d4ea883268a3abdbf3bf7d9c (diff)
downloadlibgats-d9b407475ae3ebe434b29d9eabdd7d4416e17881.tar.gz
libgats-d9b407475ae3ebe434b29d9eabdd7d4416e17881.tar.bz2
libgats-d9b407475ae3ebe434b29d9eabdd7d4416e17881.tar.xz
libgats-d9b407475ae3ebe434b29d9eabdd7d4416e17881.zip
More comment/spelling fixes. Added a helper to GatsInputStream so
you can find out how many bytes the previously read object was.
Diffstat (limited to '')
-rw-r--r--java/com/xagasoft/gats/KeyNotFoundException.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/java/com/xagasoft/gats/KeyNotFoundException.java b/java/com/xagasoft/gats/KeyNotFoundException.java
index 4b75847..49d14e1 100644
--- a/java/com/xagasoft/gats/KeyNotFoundException.java
+++ b/java/com/xagasoft/gats/KeyNotFoundException.java
@@ -5,11 +5,12 @@ package com.xagasoft.gats;
5 * casting helper functions is used to extract a value. In those cases, 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 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 7 * using object types). This has a couple of advantages when working with
8 * non-object types, and maintains compatability with other implementations 8 * non-object types, and maintains compatibility with other implementations
9 * of the Gats library. 9 * of the Gats library.
10 */ 10 */
11public class KeyNotFoundException extends Exception 11public class KeyNotFoundException extends Exception
12{ 12{
13 private static final long serialVersionUID = -1919827309987785614L;
13 private Object oSrc = null; 14 private Object oSrc = null;
14 private String sKey = null; 15 private String sKey = null;
15 16