mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
b02427417c
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@5614 21ef857c-d57f-4fe0-8362-d861dc6d29cd
52 lines
1.4 KiB
C#
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)
|
|
{ }
|
|
}
|
|
}
|