blob: 4fe5ddea74accaeb0505b2fa91c2d591fc1e5e70 [file] [log] [blame]
/*=========================================================================
* (c)Copyright 2002-2009, GemStone Systems, Inc. All Rights Reserved.
* 1260 NW Waterhouse Ave., Suite 200, Beaverton, OR 97006
* All Rights Reserved.
* =======================================================================*/
package com.gemstone.gemfire.mgmt.DataBrowser.query;
public class IntrospectionException extends QueryExecutionException {
/**
*
*/
private static final long serialVersionUID = 1L;
public IntrospectionException() {
super();
}
public IntrospectionException(String arg0, Throwable arg1) {
super(arg0, arg1);
}
public IntrospectionException(String arg0) {
super(arg0);
}
public IntrospectionException(Throwable arg0) {
super(arg0);
}
}