first unit test

This commit is contained in:
2019-10-25 03:16:17 -06:00
parent 6901925c69
commit 93b22ef2ec
21 changed files with 275 additions and 254 deletions

View File

@@ -1,11 +1,11 @@
using System;
namespace Shapes
{
public class ShapeException : System.Exception
public class ShapeException : Exception
{
public ShapeException(string message) : base(message)
{
}
}
}