11 lines
167 B
C#
11 lines
167 B
C#
namespace Shapes
|
|
{
|
|
|
|
public class ShapeException : System.Exception
|
|
{
|
|
public ShapeException(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
|
|
} |