- ArgumentException, ArgumentNullException, and ArgumentOutOfRangeException.
- NullReferenceException, IndexOutOfRangeException, SQL exceptions
- Stack Overflow Exception, Invalid Castexception
ArgumentException occurs due to the appearance of invalid argument types
argument null exception is due to null argument appearances. and out of range is when argument is defined which exceeds within its own bound levels.
null reference exception is when referencing an object you come across null character.
IndexOutOfRangeException is when the index is defined beyond the actual bound levels. like in arrays. carrying integers of other characters.
sql exception is when mismatch happens between the number of rows or columns or irrelevant data types happens when client-side access the server side. in the database.
InvalidCastexception happens when the wrong type of casting happens between to data types for example between string and integer.
StackOverflowException happens when stacks try to acquire values beyond its own bound levels preassigned.