Improved error message when no date adapter provided (#9147)

This commit is contained in:
Evert Timberg 2021-05-22 08:59:02 -04:00 committed by GitHub
parent ee519606f2
commit 087f9c30c5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@
* @return {*}
*/
function abstract() {
throw new Error('This method is not implemented: either no adapter can be found or an incomplete integration was provided.');
throw new Error('This method is not implemented: Check that a complete date adapter is provided.');
}
/**