File: JRexecException.java

package info (click to toggle)
weirdx 1.0.32-8
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 1,488 kB
  • sloc: java: 22,813; perl: 372; sh: 25; makefile: 2
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);
  }
}