1 16 17 package de.schlichtherle.crypto.io.raes; 18 19 import java.io.FileNotFoundException ; 20 21 33 public class RaesParametersException extends FileNotFoundException { 34 35 40 public RaesParametersException() { 41 super("No suitable RaesParameters provided!"); 42 } 43 44 50 public RaesParametersException(String msg) { 51 super(msg); 52 } 53 54 60 public RaesParametersException(Throwable cause) { 61 super(cause != null ? cause.toString() : null); 62 initCause(cause); 63 } 64 } 65 | Popular Tags |