From b1a8f9d5a1f45849d7674b363120b2b7a4abfd44 Mon Sep 17 00:00:00 2001 From: Evan Hemsley Date: Wed, 23 Oct 2019 18:32:07 -0700 Subject: [PATCH] remove custom exception --- Graph/Exceptions/InvalidVertexException.cs | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 Graph/Exceptions/InvalidVertexException.cs diff --git a/Graph/Exceptions/InvalidVertexException.cs b/Graph/Exceptions/InvalidVertexException.cs deleted file mode 100644 index 57318ab..0000000 --- a/Graph/Exceptions/InvalidVertexException.cs +++ /dev/null @@ -1,12 +0,0 @@ -using System; - -namespace MoonTools.Core.Graph -{ - public class InvalidVertexException : Exception - { - public InvalidVertexException( - string format, - params object[] args - ) : base(string.Format(format, args)) { } - } -}