public void defaultKoanDescriptions() throws Exception {
    StringBuilder exceptionStringBuilder = new StringBuilder(KoanConstants.EOL);
    for (Entry<String, Map<String, KoanElementAttributes>> suiteAndKoans : 
      PathToEnlightenment.getPathToEnlightenment().getKoanMethodsBySuiteByPackage().next().getValue().entrySet()) {
      for(Entry<String, KoanElementAttributes> koanEntry : suiteAndKoans.getValue().entrySet()){
        KoanMethod koan = KoanMethod.getInstance(koanEntry.getValue());
        Koan annotation = koan.getMethod().getAnnotation(Koan.class);
        if (annotation != null && KoanConstants.DEFAULT_KOAN_DESC.equals(koan.getLesson())) {
          exceptionStringBuilder.append(suiteAndKoans.getKey().getClass().getName()).append('.')
              .append(koan.getMethod().getName()).append(KoanConstants.EOL);
        }
      }
    }
    String exceptionString = exceptionStringBuilder.toString();
    if(exceptionString.trim().length() != 0){