ResourceExistsException constructor

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

Implementation

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