1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
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; } }