File: JRexecException.java

package info (click to toggle)
weirdx 1.0.32-5
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 1,432 kB
  • ctags: 2,322
  • sloc: java: 22,593; perl: 372; sh: 25; makefile: 5
file content (10 lines) | stat: -rw-r--r-- 192 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
package com.jcraft.util;

public class JRexecException extends Exception {
  public JRexecException () {
    super();
  }
  public JRexecException (String s) {
    super ("JRexec: "+s);
  }
}