using System; using System.Runtime.Serialization; using VNLib.Net.Messaging.FBM; namespace VNLib.Data.Caching.Exceptions { /// /// Raised when a request (or server response) calculates the size of the message to be too large to proccess /// public class MessageTooLargeException : FBMException { /// public MessageTooLargeException() {} /// public MessageTooLargeException(string message) : base(message) {} /// public MessageTooLargeException(string message, Exception innerException) : base(message, innerException) {} /// protected MessageTooLargeException(SerializationInfo info, StreamingContext context) : base(info, context) {} } }