aboutsummaryrefslogtreecommitdiff
path: root/java/com/xagasoft/gats/KeyNotFoundException.java
blob: 49d14e17a877501c35993a6403998704ff7ff2a7 (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
32
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 compatibility with other implementations
 * of the Gats library.
 */
public class KeyNotFoundException extends Exception
{
	private static final long serialVersionUID = -1919827309987785614L;
	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;
	}
}