Skip to main content
summaryrefslogtreecommitdiffstats
blob: a96df59e7c52b60615e631c789857710eefec58c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 *(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 = ""; //$NON-NLS-1$

	public MIException(String s) {
		super(s);
	}

	public MIException(String s, String l) {
		super(s);
		log = l;
	}

	public String getLogMessage() {
		return log;
	}
}

Back to the top