source: other-projects/trunk/7z-ant/src/LZMA/LzmaException.java@ 17387

Last change on this file since 17387 was 17387, checked in by oranfry, 16 years ago

Modified ant task which works with the updated 7zip API

File size: 282 bytes
Line 
1package LZMA;
2
3public class LzmaException extends java.io.IOException {
4 /**
5 * Comment for <code>serialVersionUID</code>
6 */
7 private static final long serialVersionUID = 3689351022372206390L;
8
9 public LzmaException() {}
10
11 public LzmaException (String msg) {
12 super(msg);
13 }
14}
15
Note: See TracBrowser for help on using the repository browser.