mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-21 10:01:27 -07:00
17 lines
436 B
C#
17 lines
436 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Bloxstrap.Exceptions
|
|
{
|
|
internal class AssertionException : Exception
|
|
{
|
|
public AssertionException(string message)
|
|
: base($"{message}\n\nThis is very likely just an off-chance error. Please report this first, and then start {App.ProjectName} again.")
|
|
{
|
|
}
|
|
}
|
|
}
|