ContentTooLargeException constructor

ContentTooLargeException(
  1. int size,
  2. int maxSize
)

Implementation

ContentTooLargeException(this.size, this.maxSize)
    : super(
          'Content size ($size bytes) exceeds maximum allowed size ($maxSize bytes)');