01: /*
02: * Created on 04/09/2006 21:32:40
03: */
04: package net.jforum.exceptions;
05:
06: /**
07: * @author Rafael Steil
08: * @version $Id: APIException.java,v 1.1 2006/09/05 00:53:32 rafaelsteil Exp $
09: */
10: public class APIException extends RuntimeException {
11: public APIException(String message) {
12: super(message);
13: }
14: }
|