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