private static Class getScopeImplClass()

in lib/src/main/java/motif/ScopeFactory.java [63:74]


  private static Class<?> getScopeImplClass(Class<?> scopeClass) {
    String scopeImplClassName = getScopeImplClassName(scopeClass);
    try {
      return Class.forName(scopeImplClassName, true, scopeClass.getClassLoader());
    } catch (ClassNotFoundException e) {
      throw new RuntimeException(
          "Could not find Scope implementation class "
              + scopeImplClassName
              + ". Ensure that the Motif "
              + "annotation processor is enabled and that proguard is configured correctly (See README for details).");
    }
  }