Show ResultException.java syntax highlighted
/*
* Copyright (c) 2005
* Helsinki Institute of Physics
* see LICENSE file for details
*
* ResultException.java
* Created on 1.8.2005
*/
package fi.hip.gb.portlet.results;
/**
* When something goes wrong with getting results from the server
*
* @author Antti Ahvenlampi
* @version $Id: ResultException.java 476 2005-08-15 15:20:12Z ahvenlam $
*/
public class ResultException extends Exception {
/**
* @param msg
*/
public ResultException(String msg) {
super(msg);
}
}
See more files for this project here