RogueSharp
Show / Hide Table of Contents

Class PathNotFoundException

Exception that is thrown when attempting to find a Path from a Source to a Destination but one does not exist

Inheritance
System.Object
System.Exception
PathNotFoundException
Inherited Members
System.Exception.GetBaseException()
System.Exception.ToString()
System.Exception.Data
System.Exception.HelpLink
System.Exception.HResult
System.Exception.InnerException
System.Exception.Message
System.Exception.Source
System.Exception.StackTrace
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: RogueSharp
Assembly: RogueSharp.dll
Syntax
public class PathNotFoundException : Exception

Constructors

| Improve this Doc View Source

PathNotFoundException()

Initializes a new instance of the PathNotFoundException class

Declaration
public PathNotFoundException()
| Improve this Doc View Source

PathNotFoundException(String)

Initializes a new instance of the PathNotFoundException class with a specified error message.

Declaration
public PathNotFoundException(string message)
Parameters
Type Name Description
System.String message

The error message that explains the reason for the exception.

| Improve this Doc View Source

PathNotFoundException(String, Exception)

Initializes a new instance of the PathNotFoundException class with a specified error message and a reference to the inner exception that is the cause of this exception.

Declaration
public PathNotFoundException(string message, Exception innerException)
Parameters
Type Name Description
System.String message

The error message that explains the reason for the exception.

System.Exception innerException

The exception that is the cause of the current exception. If the innerException parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.

  • Improve this Doc
  • View Source
RogueSharp © 2014-2020 Faron Bracy
Back to top