C# Class OpenCl.DotNetCore.OpenClException

Represents an exception, which is thrown when there is an OpenCL error.
Inheritance: Exception
显示文件 Open project: swap-dev/SwapReferenceMiner

Public Methods

Method Description
OpenClException ( ) : System

Initializes a new OpenClException instance.

OpenClException ( Result result ) : System

Initializes a new OpenClException instance.

OpenClException ( string message ) : System

Initializes a new OpenClException instance.

OpenClException ( string message, Exception inner ) : System

Initializes a new OpenClException instance.

OpenClException ( string message, Exception inner, Result result ) : System

Initializes a new OpenClException instance.

OpenClException ( string message, Result result ) : System

Initializes a new OpenClException instance.

Method Details

OpenClException() public method

Initializes a new OpenClException instance.
public OpenClException ( ) : System
return System

OpenClException() public method

Initializes a new OpenClException instance.
public OpenClException ( Result result ) : System
result Result The error code that was returned by OpenCL.
return System

OpenClException() public method

Initializes a new OpenClException instance.
public OpenClException ( string message ) : System
message string An error message.
return System

OpenClException() public method

Initializes a new OpenClException instance.
public OpenClException ( string message, Exception inner ) : System
message string An error message.
inner Exception The inner exception, which is the root cause for this exception.
return System

OpenClException() public method

Initializes a new OpenClException instance.
public OpenClException ( string message, Exception inner, Result result ) : System
message string An error message.
inner Exception The inner exception, which is the root cause for this exception.
result Result The error code that was returned by OpenCL.
return System

OpenClException() public method

Initializes a new OpenClException instance.
public OpenClException ( string message, Result result ) : System
message string An error message.
result Result The error code that was returned by OpenCL.
return System