001    package org.bouncycastle.crypto;
002    
003    public class RuntimeCryptoException extends RuntimeException
004    {
005        public RuntimeCryptoException() {}
006    
007        public RuntimeCryptoException(String par1Str)
008        {
009            super(par1Str);
010        }
011    }