blob: f16bce1885a436ae77fc92792570df5428f68e49 [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 ColumnValueNotAvailableException extends Exception {
/**
*
*/
private static final long serialVersionUID = 1L;
public ColumnValueNotAvailableException(String arg0, Throwable arg1) {
super(arg0, arg1);
// TODO Auto-generated constructor stub
}
public ColumnValueNotAvailableException(String arg0) {
super(arg0);
// TODO Auto-generated constructor stub
}
public ColumnValueNotAvailableException(Throwable arg0) {
super(arg0);
// TODO Auto-generated constructor stub
}
}