1 package org.argeo.osgi.a2;
2
3 /** Unchecked A2 provisioning exception. */
4 public class A2Exception extends RuntimeException {
5 private static final long serialVersionUID = 1927603558545397360L;
6
7 public A2Exception(String message, Throwable e) {
8 super(message, e);
9 }
10
11 public A2Exception(String message) {
12 super(message);
13 }
14
15 }