aboutsummaryrefslogtreecommitdiff
path: root/java/com/xagasoft/gats/KeyNotFoundException.java
blob: 4b758478506465c99c668a9dcba70603fb3a80b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.xagasoft.gats;

/**
 * This exception is thrown by the container classes in Gats when one of the
 * casting helper functions is used to extract a value.  In those cases,
 * in java we could still potentially return a null (at least if we were
 * using object types).  This has a couple of advantages when working with
 * non-object types, and maintains compatability with other implementations
 * of the Gats library.
 */
public class KeyNotFoundException extends Exception
{
	private Object oSrc = null;
	private String sKey = null;

	public KeyNotFoundException( Object oSrc, String sKey )
	{
		this.oSrc = oSrc;
		this.sKey = sKey;
	}

	public Object getSource()
	{
		return oSrc;
	}

	public String getKey()
	{
		return sKey;
	}
}