Added Rectangle

This commit is contained in:
Brady
2019-10-20 21:42:51 -06:00
parent 62c9007691
commit 268c742f6c
18 changed files with 583 additions and 9 deletions

11
Shapes/ShapeException.cs Normal file
View File

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