tModLoader v0.11.8.9
A mod to make and play Terraria mods
FolderCreationFailedException.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-tModLoader-Usage-FAQ#systemunauthorizedaccessexception-access-to-the-path-is-denied";
8
9 public FolderCreationFailedException(string message, Exception innerException) : base(message, innerException)
10 {
11 }
12 }
13}
FolderCreationFailedException(string message, Exception innerException)