tModLoader v0.11.8.9
A mod to make and play Terraria mods
ModSortingException.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3using Terraria.ModLoader.Core;
4
6{
7 internal class ModSortingException : Exception
8 {
9 public ICollection<LocalMod> errored;
10
11 public ModSortingException(ICollection<LocalMod> errored, string message) : base(message) {
12 this.errored = errored;
13 }
14 }
15}