diff --git a/src/Simulation/Common/Exceptions/QuantumProcessorTranslationException.cs b/src/Simulation/Common/Exceptions/QuantumProcessorTranslationException.cs new file mode 100644 index 00000000000..5ef32c382dd --- /dev/null +++ b/src/Simulation/Common/Exceptions/QuantumProcessorTranslationException.cs @@ -0,0 +1,15 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; + +namespace Microsoft.Quantum.Simulation.Common.Exceptions +{ + public class QuantumProcessorTranslationException : Exception + { + public QuantumProcessorTranslationException(string message = "An exception occurred while performing a translation on a quantum processor.") + : base(message) + { + } + } +}