diff options
Diffstat (limited to 'crypto/src/tsp/TSPException.cs')
-rw-r--r-- | crypto/src/tsp/TSPException.cs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/crypto/src/tsp/TSPException.cs b/crypto/src/tsp/TSPException.cs new file mode 100644 index 000000000..a5e24163d --- /dev/null +++ b/crypto/src/tsp/TSPException.cs @@ -0,0 +1,25 @@ +using System; + +namespace Org.BouncyCastle.Tsp +{ + public class TspException + : Exception + { + public TspException() + { + } + + public TspException( + string message) + : base(message) + { + } + + public TspException( + string message, + Exception e) + : base(message, e) + { + } + } +} |