Help for this page

Select Code to Download


  1. or download this
    try {
      myroutine(); // may throw three types of exceptions
    ...
        logMyErrors(e); // pass exception object to error handler
      }
    }
    
  2. or download this
    try: 
        # your code here
    ...
        # all other types of exceptions
    
    print('Should reach here')
    
  3. or download this
    try {
        # your code here
    ...
    };
    
    print('Should reach here')
    
  4. or download this
    try {
        # your code here
    ...
        # all other types of exceptions
    };
    print('Should reach here')
    
  5. or download this
    try {
        # your code here
    ...
        # all other types of exceptions
    };
    print('Should reach here')