webdav portal multiselect + delete ability added
This commit is contained in:
parent
c16a9a6c66
commit
29747087ff
38 changed files with 964 additions and 66 deletions
|
@ -4,5 +4,19 @@ namespace WebsitePanel.WebDav.Core.Exceptions
|
|||
{
|
||||
public class WebDavException : Exception
|
||||
{
|
||||
public WebDavException()
|
||||
: base() { }
|
||||
|
||||
public WebDavException(string message)
|
||||
: base(message) { }
|
||||
|
||||
public WebDavException(string format, params object[] args)
|
||||
: base(string.Format(format, args)) { }
|
||||
|
||||
public WebDavException(string message, Exception innerException)
|
||||
: base(message, innerException) { }
|
||||
|
||||
public WebDavException(string format, Exception innerException, params object[] args)
|
||||
: base(string.Format(format, args), innerException) { }
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue