1 package com.atlassian.plugins.rest.common.expand;
2
3 public class ExpandException extends RuntimeException
4 {
5 public ExpandException(Throwable cause)
6 {
7 super(cause);
8 }
9
10 public ExpandException(String message)
11 {
12 super(message);
13 }
14 }