From df030d12e852e5512424933088534a9003b0fb15 Mon Sep 17 00:00:00 2001 From: Cesar Zaragoza Cortes Date: Tue, 26 May 2020 20:38:58 -0700 Subject: [PATCH] Created AzzureQuantumException. --- .../Exceptions/AzureQuantumException.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/Azure/Azure.Quantum.Client/Exceptions/AzureQuantumException.cs diff --git a/src/Azure/Azure.Quantum.Client/Exceptions/AzureQuantumException.cs b/src/Azure/Azure.Quantum.Client/Exceptions/AzureQuantumException.cs new file mode 100644 index 00000000000..734827ab73f --- /dev/null +++ b/src/Azure/Azure.Quantum.Client/Exceptions/AzureQuantumException.cs @@ -0,0 +1,15 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; + +namespace Microsoft.Azure.Quantum.Exceptions +{ + public class AzureQuantumException : Exception + { + public AzureQuantumException(string message = "An exception related to the Azure quantum service or storage occurred.") + : base(message) + { + } + } +}