TableAlreadyExistsException constructor

TableAlreadyExistsException({
  1. String? type,
  2. String? message,
})

Implementation

TableAlreadyExistsException({String? type, String? message})
    : super(
          type: type, code: 'TableAlreadyExistsException', message: message);