aboutsummaryrefslogtreecommitdiff
path: root/java/com/xagasoft/gats/KeyNotFoundException.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/xagasoft/gats/KeyNotFoundException.java')
-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