01: /**
02: * $Revision:$
03: * $Date:$
04: *
05: * Copyright (C) 2007 Jive Software. All rights reserved.
06: * This software is the proprietary information of Jive Software. Use is subject to license terms.
07: */package org.jivesoftware.util;
08:
09: /**
10: * A generic exception for when errors occur in the system.
11: */
12: public class InternalServerErrorException extends RuntimeException {
13: public InternalServerErrorException(String s, Exception e) {
14: super(s, e);
15: }
16: }
|