| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. See License.txt in the project root for |
| | 3 | | // license information. |
| | 4 | |
|
| | 5 | | using System; |
| | 6 | |
|
| | 7 | | namespace Microsoft.Azure.KeyVault.WebKey |
| | 8 | | { |
| | 9 | | public sealed class JsonWebKeyVerificationException : Exception |
| | 10 | | { |
| 0 | 11 | | public JsonWebKeyVerificationException( string message ) : base( message ) |
| | 12 | | { |
| 0 | 13 | | } |
| | 14 | |
|
| 0 | 15 | | public JsonWebKeyVerificationException( string message, Exception inner ) : base( message, inner ) |
| | 16 | | { |
| 0 | 17 | | } |
| | 18 | | } |
| | 19 | | } |