/*
* Copyright (C) 2009 by TunedIT. All rights reserved.
*
*/
package org.tunedit.core.exception;
/**
* Signals errors and unusual events related to testing environment of TunedTester and TunedIT,
* like communication errors between TunedTester and TunedIT server.
*
* @author Marcin Wojnarski
*
*/
public class TunedTesterException extends TunedITException {
private static final String MSG = "Unknown error related to testing environment";
public TunedTesterException() {
super(MSG);
}
public TunedTesterException(String msg) {
super(msg);
}
public TunedTesterException(Exception cause) {
super(MSG, cause);
}
public TunedTesterException(String msg, Exception cause) {
super(msg, cause);
}
}