blob: 8a4557b49445432f767cb1bb14b4dbd6ae6aa5cd [file] [log] [blame]
/*
*(c) Copyright QNX Software Systems Ltd. 2002.
* All Rights Reserved.
*
*/
package org.eclipse.cdt.debug.mi.core;
/**
*
* A checked exception representing a failure.
*
*/
public class MIException extends Exception {
String log = "";
public MIException(String s) {
super(s);
}
public MIException(String s, String l) {
super(s);
log = l;
}
public String getLogMessage() {
return log;
}
}