1 package com.atlassian.plugins.rest.common.expand.parameter;
2
3 import com.atlassian.plugins.rest.common.expand.ExpandException;
4
5 public class IndexException extends ExpandException
6 {
7 public IndexException(String s)
8 {
9 super(s);
10 }
11 }