1 package com.sslexplorer.security; 2 3 public class UpdatePrivateKeyPassphraseException extends Exception { 4 5 public UpdatePrivateKeyPassphraseException() { 6 super(); 7 } 9 10 public UpdatePrivateKeyPassphraseException(String message) { 11 super(message); 12 } 14 15 public UpdatePrivateKeyPassphraseException(String message, Throwable cause) { 16 super(message, cause); 17 } 19 20 public UpdatePrivateKeyPassphraseException(Throwable cause) { 21 super(cause); 22 } 24 25 } 26 | Popular Tags |