Set exception message (partial emssage)

This commit is contained in:
Tristan B. Kildaire 2020-05-15 16:44:59 +02:00
parent abe3609c72
commit 4f0681d3cb
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ public class BesterException : Exception
{
this(string message)
{
super("");
super(message);
}
}