1 16 package com.ibatis.common.beans; 17 18 import com.ibatis.common.exception.NestedRuntimeException; 19 20 23 public class ProbeException extends NestedRuntimeException { 24 25 28 public ProbeException() { 29 } 30 31 36 public ProbeException(String msg) { 37 super(msg); 38 } 39 40 45 public ProbeException(Throwable cause) { 46 super(cause); 47 } 48 49 55 public ProbeException(String msg, Throwable cause) { 56 super(msg, cause); 57 } 58 59 } 60 | Popular Tags |