Skip to content

Commit

Permalink
fix: updating the api url reference for errors page (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
pedroimpulcetto authored May 29, 2024
1 parent a3fef82 commit 1214f73
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions resend/exceptions.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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,
Expand All @@ -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,
Expand All @@ -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,
Expand All @@ -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,
Expand All @@ -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,
Expand Down

0 comments on commit 1214f73

Please sign in to comment.