ClientException.notRelative constructor

ClientException.notRelative(
  1. Uri reference
)

Create an exception describing that reference is not a relative one.

Implementation

factory ClientException.notRelative(Uri reference) => ClientException(
      '$reference is not relative reference',
      reference: reference,
    );