View Javadoc
1   package org.argeo.eclipse.ui.specific;
2   
3   /** Exception related to SWT/RWT single sourcing. */
4   public class SingleSourcingException extends RuntimeException {
5   	private static final long serialVersionUID = -727700418055348468L;
6   
7   	public SingleSourcingException(String message, Throwable cause) {
8   		super(message, cause);
9   	}
10  
11  	public SingleSourcingException(String message) {
12  		super(message);
13  	}
14  
15  }