1 2 3 4 5 6 7 8 9 10 11 12
// Copyright (c) Facebook, Inc. and its affiliates // SPDX-License-Identifier: MIT OR Apache-2.0 using System; namespace Serde { public sealed class SerializationException : Exception { public SerializationException(string message) : base(message) { } } }