package com.xagasoft.gats; 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; } }