StoreException.java :  » android-platform-external » bouncycastle » org » bouncycastle » util » Android Open Source

Android Open Source » android platform external » bouncycastle 
bouncycastle » org » bouncycastle » util » StoreException.java
package org.bouncycastle.util;

public class StoreException
    extends RuntimeException
{
    private Throwable _e;

    public StoreException(String s, Throwable e)
    {
        super(s);
        _e = e;
    }

    public Throwable getCause()
    {
        return _e;
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.