ZstdLimitExceededException constructor

ZstdLimitExceededException(
  1. int declaredSize,
  2. int limit
)

Creates a ZstdLimitExceededException for a declaredSize that exceeded limit.

Implementation

ZstdLimitExceededException(this.declaredSize, this.limit)
  : super('declared content size $declaredSize exceeds limit $limit');