~ubuntu-branches/ubuntu/precise/classpath/precise

« back to all changes in this revision

Viewing changes to tools/gnu/classpath/tools/rmi/rmic/templates/Stub_12Method.jav

  • Committer: Bazaar Package Importer
  • Author(s): Michael Koch
  • Date: 2006-05-27 16:11:15 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060527161115-h6e39eposdt5snb6
Tags: 2:0.91-3
* Install header files to /usr/include/classpath.
* debian/control: classpath: Conflict with jamvm < 1.4.3 and
  cacao < 0.96 (Closes: #368172).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
  /** @inheritDoc */
 
2
  public #return_type #method_name(#argument_list) #throws
 
3
  {
 
4
    try
 
5
      {
 
6
        Object result =  ref.invoke(this, met_#method_name,
 
7
                   #object_arg_list,
 
8
                   #method_hash);
 
9
        #return_statement           
 
10
      }
 
11
    catch (RuntimeException e)
 
12
      {
 
13
        throw e;
 
14
      }
 
15
    catch (RemoteException e)
 
16
      {
 
17
        throw e;
 
18
      }
 
19
    catch (Exception e)
 
20
      {
 
21
        UnexpectedException uex = new UnexpectedException(exception_message);
 
22
        uex.detail = e;
 
23
        throw uex;
 
24
      }
 
25
  }
 
26
   
 
 
b'\\ No newline at end of file'