Home | History | Annotate | Download | only in operator
      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 }
     16