mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
9da6ae4934
* added MessageLabel git-svn-id: svn://svn.code.sf.net/p/processhacker/code@2419 21ef857c-d57f-4fe0-8362-d861dc6d29cd
52 lines
1.3 KiB
C#
52 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ProcessHacker.Native.Mfs
|
|
{
|
|
public class MfsException : Exception
|
|
{
|
|
public MfsException()
|
|
: base()
|
|
{ }
|
|
|
|
public MfsException(string message)
|
|
: base(message)
|
|
{ }
|
|
|
|
public MfsException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{ }
|
|
}
|
|
|
|
public class MfsInvalidFileSystemException : Exception
|
|
{
|
|
public MfsInvalidFileSystemException()
|
|
: base()
|
|
{ }
|
|
|
|
public MfsInvalidFileSystemException(string message)
|
|
: base(message)
|
|
{ }
|
|
|
|
public MfsInvalidFileSystemException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{ }
|
|
}
|
|
|
|
public class MfsInvalidOperationException : Exception
|
|
{
|
|
public MfsInvalidOperationException()
|
|
: base()
|
|
{ }
|
|
|
|
public MfsInvalidOperationException(string message)
|
|
: base(message)
|
|
{ }
|
|
|
|
public MfsInvalidOperationException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{ }
|
|
}
|
|
}
|