You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mercury-parser/src/utils/errors.js

10 lines
196 B
JavaScript

const Errors = {
badUrl: {
error: true,
messages:
'The url parameter passed does not look like a valid URL. Please check your data and try again.',
},
};
export default Errors;