package mit.cipher;
import java.lang.*;

public class MITCipherException extends Exception {
  public MITCipherException() {
    super();
  }

  public MITCipherException(String string) {
    super(string);
  }
}
