InvalidPuzzleException Constructor

Initializes a new instance of the InvalidPuzzleException class.

Definition

Namespace: ProjectLCore.GameLogic
Assembly: ProjectLCore (in ProjectLCore.dll) Version: 1.0.0+d0f5e2a7a5f4bb0431970f279d2f79d24b15d256
C#
public InvalidPuzzleException(
	string message,
	bool? isBlack,
	uint? puzzleNumber,
	int? score,
	TetrominoShape? tetromino,
	int currentImage,
	int numPuzzleLinesRead
)

Parameters

message  String
The message that describes the error.
isBlack  NullableBoolean
Specifies the color of the puzzle.
puzzleNumber  NullableUInt32
The puzzle number.
score  NullableInt32
The puzzle reward score.
tetromino  NullableTetrominoShape
The puzzle reward tetromino.
currentImage  Int32
The image part that was parsed so far.
numPuzzleLinesRead  Int32
The number of image coding lines (starting with P) read so far.

See Also