// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. // SPDX-License-Identifier: MIT-0 namespace Unicorn.Web.ApprovalService; /// /// Represents the exception that is thrown when a Publication Approved event handler cannot process the event. /// [Serializable] public class PublicationApprovedEventHandlerException : Exception { public PublicationApprovedEventHandlerException(string message) : base(message) { } public PublicationApprovedEventHandlerException(string message, Exception innerException) : base(message, innerException) { } }