1 package com.atlassian.plugin.web.conditions;
2
3 import org.apache.commons.lang.exception.NestableException;
4
5 public class ConditionLoadingException extends NestableException
6 {
7 public ConditionLoadingException()
8 {
9 }
10
11 public ConditionLoadingException(String string)
12 {
13 super(string);
14 }
15
16 public ConditionLoadingException(String string, Throwable throwable)
17 {
18 super(string, throwable);
19 }
20
21 public ConditionLoadingException(Throwable throwable)
22 {
23 super(throwable);
24 }
25 }