tModLoader
v0.11.8.9
A mod to make and play Terraria mods
CustomModDataException.cs
Go to the documentation of this file.
1
using
System;
2
using
System.IO;
3
4
namespace
Terraria.ModLoader.Exceptions
5
{
6
public
class
CustomModDataException
:
IOException
7
{
8
public
readonly
string
modName
;
9
10
public
CustomModDataException
(
Mod
mod,
string
message,
Exception
inner) : base(message, inner) {
11
this.modName = mod.
Name
;
12
}
13
}
14
}
Exception
IOException
Terraria.ModLoader.Exceptions.CustomModDataException
Definition:
CustomModDataException.cs:7
Terraria.ModLoader.Exceptions.CustomModDataException.CustomModDataException
CustomModDataException(Mod mod, string message, Exception inner)
Definition:
CustomModDataException.cs:10
Terraria.ModLoader.Exceptions.CustomModDataException.modName
readonly string modName
Definition:
CustomModDataException.cs:8
Terraria.ModLoader.Mod
Mod is an abstract class that you will override. It serves as a central place from which the mod's co...
Definition:
Mod.cs:25
Terraria.ModLoader.Mod.Name
virtual string Name
Stores the name of the mod. This name serves as the mod's identification, and also helps with saving ...
Definition:
Mod.cs:42
Terraria.ModLoader.Exceptions
Definition:
BuildException.cs:5
patches
tModLoader
Terraria.ModLoader.Exceptions
CustomModDataException.cs
Generated by
1.9.4