'exception1' : is caught by 'exception2' on line number
Two handlers catch the same exception type.
Example
#include <eh.h> //... void main() { try { throw "ooops!"; } catch( signed int ) {} catch( int ) {} // error }