/*
* Copyright (C) 2009 by TunedIT. All rights reserved.
*
*/
package org.tunedit.core.exception;
/**
* Base class for all exceptions related to TunedTester, evaluation procedures
* and communication with TunedIT server (Repository and Knowledge Base).
*
* @author Marcin Wojnarski
*
*/
public class TunedITException extends Exception {
public TunedITException() {
super();
}
public TunedITException(String msg) {
super(msg);
}
public TunedITException(Throwable cause) {
super(cause);
}
public TunedITException(String msg, Throwable cause) {
super(msg, cause);
}
}