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