using System; namespace jeanf.propertyDrawer { /// /// An exception that is thrown whenever a numeric type is expected as an input somewhere but the input wasn't numeric. /// [Serializable] public class NumericTypeExpectedException : Exception { public NumericTypeExpectedException() { } public NumericTypeExpectedException(string message) : base(message) { } public NumericTypeExpectedException(string message, Exception inner) : base(message, inner) { } protected NumericTypeExpectedException( System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) : base(info, context) { } } }