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)) { } - } -}