InvalidPayloadSizeException constructor

InvalidPayloadSizeException(
  1. int size,
  2. int max
)

Construct

Implementation

InvalidPayloadSizeException(int size, int max) {
  _message = 'mqtt-client::InvalidPayloadSizeException: The size of the '
      'payload ($size bytes) must '
      'be equal to or greater than 0 and less than $max bytes';
}