1 16 17 package de.schlichtherle.key; 18 19 29 public class KeyPromptingDisabledException extends UnknownKeyException { 30 31 public KeyPromptingDisabledException() { 32 super("Key prompting has been disabled!"); 33 } 34 35 public KeyPromptingDisabledException(Throwable cause) { 36 super("Key prompting has been disabled!"); 37 initCause(cause); 38 } 39 } 40 | Popular Tags |