From 0858a4479141b9a0e7aa22e6d570953240383c31 Mon Sep 17 00:00:00 2001 From: Muximize Date: Sun, 3 Mar 2024 01:02:02 +0100 Subject: [PATCH] Remove unused constructors that used obsolete base constructors --- CodeGen/Exceptions/UnitsNetCodeGenException.cs | 9 --------- 1 file changed, 9 deletions(-) diff --git a/CodeGen/Exceptions/UnitsNetCodeGenException.cs b/CodeGen/Exceptions/UnitsNetCodeGenException.cs index 2e98bc3e86..e25340993a 100644 --- a/CodeGen/Exceptions/UnitsNetCodeGenException.cs +++ b/CodeGen/Exceptions/UnitsNetCodeGenException.cs @@ -2,20 +2,11 @@ // Copyright 2013 Andreas Gullberg Larsen (andreas.larsen84@gmail.com). Maintained at https://github.com/angularsen/UnitsNet. using System; -using System.Runtime.Serialization; namespace CodeGen.Exceptions { internal class UnitsNetCodeGenException : Exception { - public UnitsNetCodeGenException() - { - } - - protected UnitsNetCodeGenException(SerializationInfo info, StreamingContext context) : base(info, context) - { - } - public UnitsNetCodeGenException(string message) : base(message) { }