@@ -18,7 +18,7 @@ interface ISO3166DataProvider
1818 *
1919 * @api
2020 *
21- * @throws \League\ISO3166\ Exception\OutOfBoundsException if input does not exist in dataset
21+ * @throws Exception\OutOfBoundsException if input does not exist in dataset
2222 *
2323 * @return array<string, mixed>
2424 */
@@ -29,8 +29,8 @@ public function name(string $name): array;
2929 *
3030 * @api
3131 *
32- * @throws \League\ISO3166\ Exception\DomainException if input does not look like an alpha2 key
33- * @throws \League\ISO3166\ Exception\OutOfBoundsException if input does not exist in dataset
32+ * @throws Exception\DomainException if input does not look like an alpha2 key
33+ * @throws Exception\OutOfBoundsException if input does not exist in dataset
3434 *
3535 * @return array<string, mixed>
3636 */
@@ -41,8 +41,8 @@ public function alpha2(string $alpha2): array;
4141 *
4242 * @api
4343 *
44- * @throws \League\ISO3166\ Exception\DomainException if input does not look like an alpha3 key
45- * @throws \League\ISO3166\ Exception\OutOfBoundsException if input does not exist in dataset
44+ * @throws Exception\DomainException if input does not look like an alpha3 key
45+ * @throws Exception\OutOfBoundsException if input does not exist in dataset
4646 *
4747 * @return array<string, mixed>
4848 */
@@ -53,8 +53,8 @@ public function alpha3(string $alpha3): array;
5353 *
5454 * @api
5555 *
56- * @throws \League\ISO3166\ Exception\DomainException if input does not look like a numeric key
57- * @throws \League\ISO3166\ Exception\OutOfBoundsException if input does not exist in dataset
56+ * @throws Exception\DomainException if input does not look like a numeric key
57+ * @throws Exception\OutOfBoundsException if input does not exist in dataset
5858 *
5959 * @return array<string, mixed>
6060 */
0 commit comments