Example: ```pascal begin try calltest(); except on E: EArgumentException do begin calltest(); end; on E: Exception do begin calltest(); end else begin calltest; end; end; end; ```