LoadingFailedException Constructor (String, String, Exception)

SFML.Net

LoadingFailedException Constructor (String, String, Exception)
Failure to load a resource from a file

Namespace: SFML
Assembly: sfmlnet-window-2 (in sfmlnet-window-2.dll) Version: 2.2.0.0 (2.2.0)
Syntax
public LoadingFailedException(
	string resourceName,
	string filename,
	Exception innerException
)
Public Sub New ( 
	resourceName As String,
	filename As String,
	innerException As Exception
)
public:
LoadingFailedException(
	String^ resourceName, 
	String^ filename, 
	Exception^ innerException
)
new : 
        resourceName : string * 
        filename : string * 
        innerException : Exception -> LoadingFailedException

Parameters

resourceName
Type: SystemString
Name of the resource
filename
Type: SystemString
Path of the file
innerException
Type: SystemException
Exception which is the cause ofthe current exception
See Also