Repository /TunedIT/core.jar:org.tunedit.core.exception.TunedITException


Back

No file description

Source code

/*
 *  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);
	}

}

Copyright © 2008-2011 by TunedIT
Design by luksite