[Pixelle-commit] SF.net SVN: pixelle:[208] trunk/pixelle/src/com/mebigfatguy/pixelle/ PixelleTransf
Brought to you by:
dbrosius
|
From: <dbr...@us...> - 2008-11-20 07:45:16
|
Revision: 208
http://pixelle.svn.sourceforge.net/pixelle/?rev=208&view=rev
Author: dbrosius
Date: 2008-11-20 07:45:14 +0000 (Thu, 20 Nov 2008)
Log Message:
-----------
add standard ctor
Modified Paths:
--------------
trunk/pixelle/src/com/mebigfatguy/pixelle/PixelleTransformException.java
Modified: trunk/pixelle/src/com/mebigfatguy/pixelle/PixelleTransformException.java
===================================================================
--- trunk/pixelle/src/com/mebigfatguy/pixelle/PixelleTransformException.java 2008-11-20 07:41:28 UTC (rev 207)
+++ trunk/pixelle/src/com/mebigfatguy/pixelle/PixelleTransformException.java 2008-11-20 07:45:14 UTC (rev 208)
@@ -21,6 +21,10 @@
public class PixelleTransformException extends Exception {
private static final long serialVersionUID = -7209029044223677078L;
+ public PixelleTransformException(String message) {
+ super(message);
+ }
+
public PixelleTransformException(String message, Throwable initCause) {
super(message, initCause);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|