michael@0: /* This Source Code Form is subject to the terms of the Mozilla Public michael@0: * License, v. 2.0. If a copy of the MPL was not distributed with this michael@0: * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ michael@0: michael@0: package org.mozilla.gecko; michael@0: michael@0: public class RoboCopException extends RuntimeException { michael@0: michael@0: public RoboCopException() { michael@0: super(); michael@0: } michael@0: michael@0: public RoboCopException(String message) { michael@0: super(message); michael@0: } michael@0: michael@0: public RoboCopException(Throwable cause) { michael@0: super(cause); michael@0: } michael@0: michael@0: public RoboCopException(String message, Throwable cause) { michael@0: super(message, cause); michael@0: } michael@0: }