using System; using System.Runtime.Serialization; namespace JuicyGraphics.Exceptions { [Serializable] public class normalizeVectorException : Exception { public normalizeVectorException() { } public normalizeVectorException(string message) : base(message) { } public normalizeVectorException(string message, Exception innerException) : base(message, innerException) { } protected normalizeVectorException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }