Пример #1
0
 public ResourceNotFoundException(string path, ResourceLoaderTypes type)
     : this("Requested resource was not found", path, type)
 {
 }
Пример #2
0
 public ResourceNotFoundException(string msg, string path, ResourceLoaderTypes type)
     : base(msg)
 {
     Path = path;
     ResourceLoaderType = type;
 }