ResourceAlreadyExistsException constructor

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

Implementation

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