tModLoader v0.11.8.9
A mod to make and play Terraria mods
ResourceLoadException.cs
Go to the documentation of this file.
1using System;
2
4{
6 {
7 public ResourceLoadException(string message, Exception inner = null)
8 : base(message, inner) {
9 }
10 }
11}
ResourceLoadException(string message, Exception inner=null)