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) + { + } + } +}