コード例 #1
0
 public MissingModException(ModPath path)
 {
     ModPaths = path.AsEnumerable().ToArray();
 }
コード例 #2
0
 public MissingModException(ModPath path, string?message)
     : base(message)
 {
     ModPaths = path.AsEnumerable().ToArray();
 }
コード例 #3
0
 public ModPathException(ModPath path, string?message = null, Exception?innerException = null)
     : base(message, innerException)
 {
     ModPaths = path.AsEnumerable().ToArray();
 }