Yggdrasil/errors/errors.js
azures04 80bca31d9a Add session server routes and SessionError class
Introduces new session server endpoints for hasJoined and profile lookup, adds a SessionError class for improved error handling, and updates error exports. Also renames sessionRepository and sessionService files to sessionsRepository and sessionsService for consistency, and sets max listeners in logger.
2025-12-24 02:35:04 +01:00

11 lines
295 B
JavaScript

const DefaultError = require("./DefaultError")
const SessionError = require("./SessionError")
const YggdrasilError = require("./YggdrasilError")
const ValidationError = require("./ValidationError")
module.exports = {
DefaultError,
SessionError,
YggdrasilError,
ValidationError
}