Table of Contents

Constructor ResourceNotFoundException

Namespace
Gamelogic.Extensions
Assembly
Gamelogic.Extensions.dll

ResourceNotFoundException()

Initializes a new instance of ResourceNotFoundException with a generic message.

public ResourceNotFoundException()

ResourceNotFoundException(string)

Initializes a new instance of ResourceNotFoundException for a named resource.

public ResourceNotFoundException(string resourceName)

Parameters

resourceName string

The name of the resource that was not found.

ResourceNotFoundException(string, string)

Initializes a new instance of ResourceNotFoundException for a named resource at a specific path.

public ResourceNotFoundException(string resourceName, string resourcePath)

Parameters

resourceName string

The name of the resource that was not found.

resourcePath string

The path at which the resource was expected.

ResourceNotFoundException(string, string, string)

Initializes a new instance of ResourceNotFoundException with a custom message.

public ResourceNotFoundException(string resourceName, string resourcePath, string message)

Parameters

resourceName string

The name of the resource that was not found.

resourcePath string

The path at which the resource was expected.

message string

A custom exception message.