C# Class Summer.Batch.Core.Launch.NoSuchJobInstanceException

Inheritance: JobExecutionException
Show file Open project: SummerBatch/SummerBatchCore

Public Methods

Method Description
NoSuchJobInstanceException ( string msg ) : System

Create an exception with the given message.

NoSuchJobInstanceException ( string msg, Exception e ) : System

Custom constructor with a message and an inner exception.

Protected Methods

Method Description
NoSuchJobInstanceException ( SerializationInfo info, StreamingContext context ) : System

Serialization constructor.

Method Details

NoSuchJobInstanceException() protected method

Serialization constructor.
protected NoSuchJobInstanceException ( SerializationInfo info, StreamingContext context ) : System
info SerializationInfo
context StreamingContext
return System

NoSuchJobInstanceException() public method

Create an exception with the given message.
public NoSuchJobInstanceException ( string msg ) : System
msg string
return System

NoSuchJobInstanceException() public method

Custom constructor with a message and an inner exception.
public NoSuchJobInstanceException ( string msg, Exception e ) : System
msg string The message to send to caller
e Exception the cause of the exception
return System