View Javadoc
1   package com.atlassian.activeobjects.external;
2   
3   public final class NoDataSourceException extends IllegalStateException {
4       public NoDataSourceException() {
5           super("No data source is available, indicating that there is no tenant available to the "
6                   + "application. Your plugin is probably performing tenant specific operations too eagerly.\n"
7                   + "com.atlassian.activeobjects.external.ActiveObjectsModuleMetaData contains utility methods that "
8                   + "can assist you in this situation.\n"
9                   + "isDataSourcePresent will safely indicate the availability of the data source.");
10      }
11  }