//----------------------------------------------------------------------- // // Copyright (c) Microsoft. All rights reserved. // // // Implements class UnexpectedException. // //----------------------------------------------------------------------- namespace Microsoft.CTStore { using System; /// /// Unexpected exception class /// [Serializable] public class UnexpectedException : Exception { /// /// Initializes a new instance of the class /// public UnexpectedException() { } /// /// Initializes a new instance of the class /// /// exception message /// inner exception public UnexpectedException(string message, Exception innerException) : base(message, innerException) { } } }