mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-07-15 11:00:47 +02:00
# Description of Changes Move frontend code into `core` folder and add infrastructure for `proprietary` folder to include premium, non-OSS features
33 lines
960 B
TypeScript
33 lines
960 B
TypeScript
/**
|
|
* Standardized error handling utilities for tool operations
|
|
*/
|
|
|
|
/**
|
|
* Default error extractor that follows the standard pattern
|
|
*/
|
|
export const extractErrorMessage = (error: any): string => {
|
|
if (error.response?.data && typeof error.response.data === 'string') {
|
|
return error.response.data;
|
|
}
|
|
if (error.message) {
|
|
return error.message;
|
|
}
|
|
return 'There was an error processing your request.';
|
|
};
|
|
|
|
/**
|
|
* Creates a standardized error handler for tool operations
|
|
* @param fallbackMessage - Message to show when no specific error can be extracted
|
|
* @returns Error handler function that follows the standard pattern
|
|
*/
|
|
export const createStandardErrorHandler = (fallbackMessage: string) => {
|
|
return (error: any): string => {
|
|
if (error.response?.data && typeof error.response.data === 'string') {
|
|
return error.response.data;
|
|
}
|
|
if (error.message) {
|
|
return error.message;
|
|
}
|
|
return fallbackMessage;
|
|
};
|
|
}; |