Files
dmex b02427417c PH1.x: fixed build
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@5614 21ef857c-d57f-4fe0-8362-d861dc6d29cd
2014-02-25 23:14:38 +00:00

52 lines
1.4 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 : MfsException
{
public MfsInvalidFileSystemException()
: base("The specified file does not contain a valid file system structure.")
{ }
public MfsInvalidFileSystemException(string message)
: base(message)
{ }
public MfsInvalidFileSystemException(string message, Exception innerException)
: base(message, innerException)
{ }
}
public class MfsInvalidOperationException : MfsException
{
public MfsInvalidOperationException()
: base("The operation is not valid for the mode specified when the file system was opened.")
{ }
public MfsInvalidOperationException(string message)
: base(message)
{ }
public MfsInvalidOperationException(string message, Exception innerException)
: base(message, innerException)
{ }
}
}