tModLoader v0.11.8.9
A mod to make and play Terraria mods
RecipeException.cs
Go to the documentation of this file.
1using System;
2
4{
6 {
7 public override string HelpLink => "https://github.com/tModLoader/tModLoader/wiki/Basic-Recipes";
8
9 public RecipeException() {
10 }
11
12 public RecipeException(string message)
13 : base(message) {
14 }
15
16 public RecipeException(string message, Exception inner)
17 : base(message, inner) {
18 }
19 }
20}
RecipeException(string message, Exception inner)