From: Marco Zanon Date: Fri, 2 Aug 2013 10:04:28 +0000 (+0000) Subject: Fixed missing MTextException.java into svn. X-Git-Tag: 3.0~6 X-Git-Url: https://gitweb.marcozanon.com/?a=commitdiff_plain;h=341fea8b21f0bb86e37b9e308c97dcd34b4c6ec4;p=Macaco Fixed missing MTextException.java into svn. --- diff --git a/src/java/com/marcozanon/macaco/text/MTextException.java b/src/java/com/marcozanon/macaco/text/MTextException.java new file mode 100644 index 0000000..ed4b652 --- /dev/null +++ b/src/java/com/marcozanon/macaco/text/MTextException.java @@ -0,0 +1,31 @@ +/** + * Macaco + * Copyright (c) 2009-2012 Marco Zanon . + * Released under MIT license (see LICENSE for details). + */ + +package com.marcozanon.macaco.text; + +import com.marcozanon.macaco.MException; + +public abstract class MTextException extends MException { + + /* */ + + public MTextException() { + super(); + } + + public MTextException(String message) { + super(message); + } + + public MTextException(Throwable error) { + super(error); + } + + public MTextException(String message, Throwable error) { + super(message, error); + } + +}