~brian-thomason/+junk/bouncycastle

« back to all changes in this revision

Viewing changes to src/org/bouncycastle/crypto/RuntimeCryptoException.java

  • Committer: Brian Thomason
  • Date: 2011-12-20 17:20:32 UTC
  • Revision ID: brian.thomason@canonical.com-20111220172032-rdtm13jgdxtksacr
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package org.bouncycastle.crypto;
 
2
 
 
3
/**
 
4
 * the foundation class for the exceptions thrown by the crypto packages.
 
5
 */
 
6
public class RuntimeCryptoException 
 
7
    extends RuntimeException
 
8
{
 
9
    /**
 
10
     * base constructor.
 
11
     */
 
12
    public RuntimeCryptoException()
 
13
    {
 
14
    }
 
15
 
 
16
    /**
 
17
     * create a RuntimeCryptoException with the given message.
 
18
     *
 
19
     * @param message the message to be carried with the exception.
 
20
     */
 
21
    public RuntimeCryptoException(
 
22
        String  message)
 
23
    {
 
24
        super(message);
 
25
    }
 
26
}