Home | History | Annotate | Download | only in openssl
      1 package org.bouncycastle.openssl;
      2 
      3 import java.io.IOException;
      4 
      5 public class PasswordException
      6     extends IOException
      7 {
      8     public PasswordException(String msg)
      9     {
     10         super(msg);
     11     }
     12 }
     13