-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from maybeec/development
#7 Enabling tar.gz support
- Loading branch information
Showing
9 changed files
with
296 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
61 changes: 61 additions & 0 deletions
61
...src/com/github/maybeec/oomph/task/unzip/core/exceptions/UnsupportedFileTypeException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/** | ||
* | ||
*/ | ||
package com.github.maybeec.oomph.task.unzip.core.exceptions; | ||
|
||
/** | ||
* @author sholzer | ||
* | ||
*/ | ||
public class UnsupportedFileTypeException extends UnzipTaskException | ||
{ | ||
|
||
/** | ||
* | ||
*/ | ||
public UnsupportedFileTypeException() | ||
{ | ||
// TODO Auto-generated constructor stub | ||
} | ||
|
||
/** | ||
* @param message | ||
*/ | ||
public UnsupportedFileTypeException(String message) | ||
{ | ||
super(message); | ||
// TODO Auto-generated constructor stub | ||
} | ||
|
||
/** | ||
* @param cause | ||
*/ | ||
public UnsupportedFileTypeException(Throwable cause) | ||
{ | ||
super(cause); | ||
// TODO Auto-generated constructor stub | ||
} | ||
|
||
/** | ||
* @param message | ||
* @param cause | ||
*/ | ||
public UnsupportedFileTypeException(String message, Throwable cause) | ||
{ | ||
super(message, cause); | ||
// TODO Auto-generated constructor stub | ||
} | ||
|
||
/** | ||
* @param message | ||
* @param cause | ||
* @param enableSuppression | ||
* @param writableStackTrace | ||
*/ | ||
public UnsupportedFileTypeException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) | ||
{ | ||
super(message, cause, enableSuppression, writableStackTrace); | ||
// TODO Auto-generated constructor stub | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.