/extern/spongycastle/pkix/src/main/java/org/spongycastle/operator/RuntimeOperatorException.java
https://gitlab.com/vizilo/fdroidclient · Java · 24 lines · 19 code · 5 blank · 0 comment · 0 complexity · 51250ce6264051387f2d57bebdce5134 MD5 · raw file
- package org.spongycastle.operator;
- public class RuntimeOperatorException
- extends RuntimeException
- {
- private Throwable cause;
- public RuntimeOperatorException(String msg)
- {
- super(msg);
- }
- public RuntimeOperatorException(String msg, Throwable cause)
- {
- super(msg);
- this.cause = cause;
- }
- public Throwable getCause()
- {
- return cause;
- }
- }