public MissingModException(ModPath path) { ModPaths = path.AsEnumerable().ToArray(); }
public MissingModException(ModPath path, string?message) : base(message) { ModPaths = path.AsEnumerable().ToArray(); }
public ModPathException(ModPath path, string?message = null, Exception?innerException = null) : base(message, innerException) { ModPaths = path.AsEnumerable().ToArray(); }