This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
massivelyusefulcluster/src/org/penguincoder/mass/MassiveException.java

15 lines
255 B
Java

package org.penguincoder.mass;
/*
* Created on Dec 21, 2004
*
*/
/**
* @author Andrew Coleman
*
*/
public class MassiveException extends Exception {
public MassiveException ( String message ) {
super ( message );
}
}