export class SizeError extends Error {
  constructor(message: string) {
    super(message);
    this.name = 'SizeError';
    this.message = message;