]> git.argeo.org Git - gpl/argeo-slc.git/blob - legacy/argeo-commons/org.argeo.cms.ui.workbench/src/org/argeo/cms/ui/workbench/legacy/rap/SingleSourcingException.java
Move CLI utilities from Argeo Commons
[gpl/argeo-slc.git] / legacy / argeo-commons / org.argeo.cms.ui.workbench / src / org / argeo / cms / ui / workbench / legacy / rap / SingleSourcingException.java
1 package org.argeo.cms.ui.workbench.legacy.rap;
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 }