ReplyException
owl.cameraAPI.ReplyException
class
An exception class that is thrown when a reply doesn't match the expected reply. Can be caught using a try/catch block.

Example:
If the Cmd() method receives a reply value of anything other than 0x112233, then a ReplyException will be thrown.
	try
	{
		... do something here, such as ...

		CameraAPI.Cmd( CameraAPI.TIM_ID,
				   CameraAPI.TDL,
				   0x112233,
				   0x112233 );
	}
	catch ( ReplyException e }
	{
		... do something here,
                such as log an error ...

		logger.error( e );
	}