Files
mirror-processhacker/1.x/trunk/ProcessHacker.Native/Mfs/Exceptions.cs
T
wj32 9da6ae4934 * completed MFS
* added MessageLabel

git-svn-id: svn://svn.code.sf.net/p/processhacker/code@2419 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2009-12-16 08:19:48 +00:00

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)
{ }
}
}