SafeMathUpgradeable library When Using Solidity 0.8.0

The following statement can be found in the SafeMathUpgradeable library, even for the version using pragma solidity ^0.8.0.

Should I still use the library if I am using Solidity 0.8.0? Does it add any additional value?

 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.

Thank you. J

Just like the descriptions as above, you can still use this library, cause in some conditions, maybe you want to give your own error message.

Thank you for your answer @Skyge