Skip to content

Commit

Permalink
Removed unnecessary constructors for ConversionFailedException
Browse files Browse the repository at this point in the history
  • Loading branch information
pkaramishev committed Dec 27, 2015
1 parent 630c85c commit 8d9f4c6
Showing 1 changed file with 0 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,11 @@
* Exception indicating that conversion from one type to another was failed.
*/
public class ConversionFailedException extends RuntimeException {
public ConversionFailedException() {
}

public ConversionFailedException(String message) {
super(message);
}

public ConversionFailedException(String message, Throwable cause) {
super(message, cause);
}

public ConversionFailedException(Throwable cause) {
super(cause);
}
}

0 comments on commit 8d9f4c6

Please sign in to comment.