tModLoader
v0.11.8.9
A mod to make and play Terraria mods
RecipeException.cs
Go to the documentation of this file.
1
using
System;
2
3
namespace
Terraria.ModLoader.Exceptions
4
{
5
public
class
RecipeException
:
Exception
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
}
Exception
Terraria.ModLoader.Exceptions.RecipeException
Definition:
RecipeException.cs:6
Terraria.ModLoader.Exceptions.RecipeException.RecipeException
RecipeException(string message, Exception inner)
Definition:
RecipeException.cs:16
Terraria.ModLoader.Exceptions.RecipeException.RecipeException
RecipeException(string message)
Definition:
RecipeException.cs:12
Terraria.ModLoader.Exceptions.RecipeException.HelpLink
override string HelpLink
Definition:
RecipeException.cs:7
Terraria.ModLoader.Exceptions.RecipeException.RecipeException
RecipeException()
Definition:
RecipeException.cs:9
Terraria.ModLoader.Exceptions
Definition:
BuildException.cs:5
patches
tModLoader
Terraria.ModLoader.Exceptions
RecipeException.cs
Generated by
1.9.4