Home | History | Annotate | Download | only in x509
      1 package org.bouncycastle.x509;
      2 
      3 public class NoSuchStoreException
      4     extends Exception
      5 {
      6     public NoSuchStoreException(String message)
      7     {
      8         super(message);
      9     }
     10 }
     11