This creates a JobSubmissionException with a message that includes the name of the virtual cluster to which the job was submitted to and an exception information.

Namespace: VcClientExceptions
Assembly: VcClient (in VcClient.dll) Version: 1.0.0.0 (1.8.400.4142)

Syntax

C#
public JobSubmissionException(
	string vcName,
	Exception innerException
)
Visual Basic
Public Sub New ( _
	vcName As String, _
	innerException As Exception _
)
Visual C++
public:
JobSubmissionException(
	String^ vcName, 
	Exception^ innerException
)

Parameters

vcName
Type: String
Name of the virtual cluster to which the job was submitted to.
innerException
Type: Exception
Any Exception. Most likely, this is the exception that caused the job submission operation to fail.

See Also