Coverage Report - com.ctrip.apollo.core.exception.ServiceException
 
Classes in this File Line Coverage Branch Coverage Complexity
ServiceException
0%
0/4
N/A
1
 
 1  
 package com.ctrip.apollo.core.exception;
 2  
 
 3  
 public class ServiceException extends AbstractBaseException {
 4  
 
 5  
   /**
 6  
    * 
 7  
    */
 8  
   private static final long serialVersionUID = -6529123764065547791L;
 9  
 
 10  
   public ServiceException(String str) {
 11  0
     super(str);
 12  0
   }
 13  
 
 14  
   public ServiceException(String str, Exception e) {
 15  0
     super(str, e);
 16  0
   }
 17  
 }