]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.eclipse.ui.rap/src/org/argeo/eclipse/ui/specific/SingleSourcingException.java
SSH key pair management.
[lgpl/argeo-commons.git] / org.argeo.eclipse.ui.rap / src / org / argeo / eclipse / ui / specific / SingleSourcingException.java
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 }