Coverage Report - net.admin4j.util.Admin4jRuntimeException
 
Classes in this File Line Coverage Branch Coverage Complexity
Admin4jRuntimeException
100%
3/3
N/A
1
 
 1  
 /*
 2  
  * This software is licensed under the Apache License, Version 2.0
 3  
  * (the "License") agreement; you may not use this file except in compliance with
 4  
  * the License.  You may obtain a copy of the License at
 5  
  * 
 6  
  *      http://www.apache.org/licenses/LICENSE-2.0
 7  
  * 
 8  
  * Unless required by applicable law or agreed to in writing, software
 9  
  * distributed under the License is distributed on an "AS IS" BASIS,
 10  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 11  
  * See the License for the specific language governing permissions and
 12  
  * limitations under the License.
 13  
  */
 14  
 package net.admin4j.util;
 15  
 
 16  
 import net.admin4j.deps.commons.lang3.exception.ContextedRuntimeException;
 17  
 
 18  
 /**
 19  
  * Base exception used by Admin4J.
 20  
  * @author D. Ashmore
 21  
  * @since 1.0
 22  
  */
 23  
 public class Admin4jRuntimeException extends ContextedRuntimeException {
 24  
 
 25  
     private static final long serialVersionUID = 3277837318015113281L;
 26  
     
 27  
     public Admin4jRuntimeException(String message) {
 28  
         super(message);
 29  9
     }
 30  
 
 31  
     public Admin4jRuntimeException(Throwable cause) {
 32  
         super(cause);
 33  12
     }
 34  
 
 35  
     public Admin4jRuntimeException(String message, Throwable cause) {
 36  
         super(message, cause);
 37  3
     }
 38  
 
 39  
 }