using System;
namespace WindowsDisplayAPI.Exceptions
{
///
/// Represents errors that occurs because of an invalid path request
///
public class PathChangeException : Exception
{
///
/// Creates a new PathChangeException
///
/// The human readable message of the exception
public PathChangeException(string message) : base(message)
{
}
///
/// Creates a new PathChangeException
///
/// The human readable message of the exception
/// The inner causing exception
public PathChangeException(string message, Exception innerException) : base(message, innerException)
{
}
}
}