Disassembled CarotDav v1.14.7 with dotPeek 2017.2

This commit is contained in:
2017-10-06 17:20:58 +02:00
commit 2002a53fb5
191 changed files with 69359 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
// Decompiled with JetBrains decompiler
// Type: Rei.Fs.RemoteResourceNotFoundException
// Assembly: Rei.Fs, Version=1.13.2.8796, Culture=neutral, PublicKeyToken=null
// MVID: D8B08A8B-697C-4439-9CFF-1BE4EE46F7B0
// Assembly location: F:\Eigene Dateien\Dropbox\portable Collection\Progs\CarotDAV\Rei.Fs.dll
using System;
namespace Rei.Fs
{
public class RemoteResourceNotFoundException : Exception
{
private Uri _target;
public RemoteResourceNotFoundException(Uri uri, string message, Exception innerexception)
: base(message, innerexception)
{
this._target = uri;
}
public RemoteResourceNotFoundException(Uri uri, Exception innerexception)
: this(uri, "Remote Resource Not Found", innerexception)
{
}
public RemoteResourceNotFoundException(Uri uri)
: this(uri, "Remote Resource Not Found", (Exception) null)
{
}
public Uri TargetUri
{
get
{
return this._target;
}
}
}
}