From 1214f738e6a5951124ab9d354246c49ebe2221a2 Mon Sep 17 00:00:00 2001 From: Pedro Impulcetto Date: Tue, 28 May 2024 21:24:58 -0300 Subject: [PATCH] fix: updating the api url reference for errors page (#108) --- resend/exceptions.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/resend/exceptions.py b/resend/exceptions.py index 1eb7c5e..00a9284 100644 --- a/resend/exceptions.py +++ b/resend/exceptions.py @@ -1,7 +1,7 @@ """Resend Exceptions module. This module defines the base types for platform-wide error -codes as outlined in https://resend.com/docs/errors. +codes as outlined in https://resend.com/docs/api-reference/errors. """ from typing import Any, Dict, Union @@ -38,7 +38,7 @@ def __init__( class MissingApiKeyError(ResendError): - """see https://resend.com/docs/errors""" + """see https://resend.com/docs/api-reference/errors""" def __init__( self, @@ -61,7 +61,7 @@ def __init__( class InvalidApiKeyError(ResendError): - """see https://resend.com/docs/errors""" + """see https://resend.com/docs/api-reference/errors""" def __init__( self, @@ -81,7 +81,7 @@ def __init__( class ValidationError(ResendError): - """see https://resend.com/docs/errors""" + """see https://resend.com/docs/api-reference/errors""" def __init__( self, @@ -108,7 +108,7 @@ def __init__( class MissingRequiredFieldsError(ResendError): - """see https://resend.com/docs/errors""" + """see https://resend.com/docs/api-reference/errors""" def __init__( self, @@ -135,7 +135,7 @@ def __init__( class ApplicationError(ResendError): - """see https://resend.com/docs/errors""" + """see https://resend.com/docs/api-reference/errors""" def __init__( self,