1 19 20 package com.sslexplorer.core; 21 22 25 public class PageInterceptException extends Exception { 26 27 30 public PageInterceptException() { 31 super(); 32 } 33 34 37 public PageInterceptException(String message) { 38 super(message); 39 } 40 41 45 public PageInterceptException(String message, Throwable cause) { 46 super(message, cause); 47 } 48 49 52 public PageInterceptException(Throwable cause) { 53 super(cause); 54 } 55 56 } 57 | Popular Tags |