toErrorCause method

ErrorCause toErrorCause()

Implementation

ErrorCause toErrorCause() {
  switch (this) {
    case 'KINESIS_STREAM_NOT_FOUND':
      return ErrorCause.kinesisStreamNotFound;
    case 'IAM_PERMISSION_REVOKED':
      return ErrorCause.iamPermissionRevoked;
  }
  throw Exception('$this is not known in enum ErrorCause');
}