skyscraper8/skyscraper8/Skyscraper/SkyscraperCoreException.cs
2025-06-30 22:57:40 +02:00

25 lines
457 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using skyscraper5;
namespace skyscraper8.Skyscraper
{
public class SkyscraperCoreException : SkyscraperException
{
public SkyscraperCoreException()
{
}
public SkyscraperCoreException(string message) : base(message)
{
}
public SkyscraperCoreException(string message, Exception inner) : base(message, inner)
{
}
}
}