Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unify error throwing methods #878

Merged
merged 11 commits into from
Aug 7, 2024

Commits on Jul 26, 2024

  1. Separate Error throwing and Logging in logger.fatal

    This commit separates the error throwing and logging functionalities in logger.fatal. The logger now solely handles logging messages, while errors are thrown independently using YorkieError.
    gwbaik9717 committed Jul 26, 2024
    Configuration menu
    Copy the full SHA
    3516dc0 View commit details
    Browse the repository at this point in the history

Commits on Jul 27, 2024

  1. Standardize Error Names for Consistency

    This commit standardizes the naming conventions for errors starting with 'Err'
    gwbaik9717 committed Jul 27, 2024
    Configuration menu
    Copy the full SHA
    92dc6af View commit details
    Browse the repository at this point in the history

Commits on Jul 28, 2024

  1. Replace 'throw new Error' to YorkieError

    This commit replaces all instances of throw new Error with YorkieError to provide more specific and consistent error handling throughout the codebase.
    gwbaik9717 committed Jul 28, 2024
    Configuration menu
    Copy the full SHA
    35be776 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    30330bb View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b4c330d View commit details
    Browse the repository at this point in the history

Commits on Aug 3, 2024

  1. Configuration menu
    Copy the full SHA
    ae7461b View commit details
    Browse the repository at this point in the history

Commits on Aug 6, 2024

  1. Configuration menu
    Copy the full SHA
    bc21654 View commit details
    Browse the repository at this point in the history
  2. Remove logger.fatal when used with 'throw new YorkieError

    There is a problem of code being verbose with duuplicated logging and error throwing. Removing logger will temproarily resolve the issue.
    gwbaik9717 committed Aug 6, 2024
    Configuration menu
    Copy the full SHA
    b6c5213 View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2024

  1. Configuration menu
    Copy the full SHA
    e6ae347 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f37bf07 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    d360393 View commit details
    Browse the repository at this point in the history