Show ThinkcapException.java syntax highlighted
/*
* Created on Oct 5, 2005
*
* Copyright 2005 The Ecoinformatics Collaboratory, University of Vermont.
*
* Licensed under the GNU General Public License.
* You may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.gnu.org/licenses/gpl.html
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* TODO
*/
package org.integratedmodelling.thinkcap.exceptions;
import org.integratedmodelling.thinklab.exception.ThinklabException;
/**
* @author villa
*/
public class ThinkcapException extends ThinklabException {
private static final long serialVersionUID = 1619472805823418994L;
public ThinkcapException() {
super();
// TODO Auto-generated constructor stub
}
public ThinkcapException(String arg0) {
super(arg0);
// TODO Auto-generated constructor stub
}
public ThinkcapException(Throwable arg0) {
super(arg0);
// TODO Auto-generated constructor stub
}
}
See more files for this project here