Solidity — All About Runtime Errors

Jean Cvllr
10 min readApr 9, 2023
photo by Sigmund on Unsplash

This article is Part II of the “All About Errors” sub-series.

After looking at Compile Time errors in Part I (errors generated by the Solidity compiler), we will now look in Part II at runtime errors (errors generated at the time you interact with a contract deployed on a live network).

As we will see, 4 main types of errors can be generated in Solidity: Error(string)

--

--