Author: vtence Date: Tue Dec 14 19:51:27 2004 New Revision: 111930 URL: http://svn.apache.org/viewcvs?view=rev&rev=111930 Log: Root exception for Janus Added: incubator/directory/janus/trunk/core/api/src/java/org/apache/janus/JanusException.java
Added: incubator/directory/janus/trunk/core/api/src/java/org/apache/janus/JanusException.java Url: http://svn.apache.org/viewcvs/incubator/directory/janus/trunk/core/api/src/java/org/apache/janus/JanusException.java?view=auto&rev=111930 ============================================================================== --- (empty file) +++ incubator/directory/janus/trunk/core/api/src/java/org/apache/janus/JanusException.java Tue Dec 14 19:51:27 2004 @@ -0,0 +1,39 @@ +/* + * Copyright 2004 The Apache Software Foundation + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * 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. + * + */ +package org.apache.janus; + +public abstract class JanusException extends RuntimeException +{ + protected JanusException() + { + } + + protected JanusException( String message ) + { + super( message ); + } + + protected JanusException( Throwable cause ) + { + super( cause ); + } + + protected JanusException( String message, Throwable cause ) + { + super( message, cause ); + } +}
