1 /*
2 * This file is part of the Civitas software distribution.
3 * Copyright (c) 2007-2008, Civitas project group, Cornell University.
4 * See the LICENSE file accompanying this distribution for further license
5 * and copyright information.
6 */
7 package civitas.crypto;
8
9 public class CryptoError extends RuntimeException {
10 private static final long serialVersionUID = 20061102L;
11
12 public CryptoError(final String m) {
13 super(m);
14 }
15
16 public CryptoError(final String m, final Throwable cause) {
17 super(m, cause);
18 }
19
20 public CryptoError(final Throwable cause) {
21 super(cause);
22 }
23 }