Back to project page robotronic.
The source code is released under:
Copyright (C) 2011 by Drew Schrauf Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the So...
If you think the Android project robotronic listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.drewschrauf.robotronic.threads; /* w w w .j a va 2 s . com*/ public class ParsingException extends Exception { private static final long serialVersionUID = 1L; public ParsingException() { } public ParsingException(String detailMessage) { super(detailMessage); } public ParsingException(Throwable throwable) { super(throwable); } public ParsingException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); } }