aboutsummaryrefslogtreecommitdiff
path: root/nailgun_launcher/TrappedExitCode.java
blob: 154db2734b89e14c5179a0a517a43a7df7da7282 (plain) (blame)
1
2
3
4
5
6
7
8
package cbt;
import java.security.*;
public class TrappedExitCode extends SecurityException{
  public int exitCode;
  public TrappedExitCode(int exitCode){
    this.exitCode = exitCode;
  }
}