assume that success is a boolean variable that has already been declared. also, assume that processor refers to an object that provides a void method named process that takes no arguments. the process method may throw one of several exceptions. write some code that calls the process method provided by the processor object and handles any exception that is thrown. if an exception is thrown, assign false to the success variable. otherwise, assign true to the success variable.