Standard interface for Shogun errors

interface ShogunError {
    code: string;
    message: string;
    originalError?: unknown;
    timestamp: number;
    type: ErrorType;
}

Properties

code: string
message: string
originalError?: unknown
timestamp: number
type: ErrorType