~brian-thomason/+junk/bouncycastle

« back to all changes in this revision

Viewing changes to src/org/bouncycastle/operator/OperatorCreationException.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.operator;
 
2
 
 
3
public class OperatorCreationException
 
4
    extends OperatorException
 
5
{
 
6
    public OperatorCreationException(String msg, Throwable cause)
 
7
    {
 
8
        super(msg, cause);
 
9
    }
 
10
 
 
11
    public OperatorCreationException(String msg)
 
12
    {
 
13
        super(msg);
 
14
    }
 
15
}