Table of Contents

Class DirectoryLoadingException

Namespace
DirectoryToObject
Assembly
DirectoryToObject.dll

Exception thrown by the library while loading a directory. Usually wraps an inner exception that is the actual cause.

public class DirectoryLoadingException : Exception, ISerializable
Inheritance
DirectoryLoadingException
Implements
Inherited Members

Constructors

DirectoryLoadingException(string, Exception?)

Exception thrown by the library while loading a directory. Usually wraps an inner exception that is the actual cause.

public DirectoryLoadingException(string message, Exception? innerException = null)

Parameters

message string

The exception message.

innerException Exception

The root cause of the exception.

Properties

Message

The exception message, with additional details.

public override string Message { get; }

Property Value

string

PathInJsonObject

For errors that are related to processing of JSON objects, the path within the object where the error was detected.

public string PathInJsonObject { get; init; }

Property Value

string

RelativePathInFileSystem

The relative path in the input file system where the error was detected.

public string RelativePathInFileSystem { get; init; }

Property Value

string