24 lines
511 B
C#
24 lines
511 B
C#
using System.Runtime.Serialization;
|
|
using skyscraper5;
|
|
|
|
namespace skyscraper8.Tests.NUnit;
|
|
|
|
public class SkyscraperTestException : SkyscraperException
|
|
{
|
|
public SkyscraperTestException()
|
|
{
|
|
}
|
|
|
|
public SkyscraperTestException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public SkyscraperTestException(string message, Exception inner) : base(message, inner)
|
|
{
|
|
}
|
|
|
|
protected SkyscraperTestException(SerializationInfo info, StreamingContext context) : base(info, context)
|
|
{
|
|
}
|
|
}
|