using System; using System.Runtime.Serialization; namespace ServiceStack.Text.Tests.DynamicModels.DataModel { public class CustomException : Exception { public CustomException() { } public CustomException(string message) : base(message) { } public CustomException(string message, Exception innerException) : base(message, innerException) { } #if !NETCORE protected CustomException(SerializationInfo info, StreamingContext context) : base(info, context) { } #endif } }