home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / sun / audio / ActionExceptionWrapper.class (.txt) next >
Encoding:
Java Class File  |  1979-12-31  |  478 b   |  17 lines

  1. package sun.audio;
  2.  
  3. import java.security.PrivilegedExceptionAction;
  4.  
  5. class ActionExceptionWrapper implements PrivilegedExceptionAction {
  6.    // $FF: renamed from: sa sun.audio.AudioSecurityExceptionAction
  7.    AudioSecurityExceptionAction field_0;
  8.  
  9.    ActionExceptionWrapper(AudioSecurityExceptionAction var1) {
  10.       this.field_0 = var1;
  11.    }
  12.  
  13.    public Object run() throws Exception {
  14.       return this.field_0.run();
  15.    }
  16. }
  17.