remove custom exception

master
Evan Hemsley 2019-10-23 18:32:07 -07:00
parent f2f1b8979b
commit b1a8f9d5a1
1 changed files with 0 additions and 12 deletions

View File

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