View Javadoc

1   /*
2    * REPOWEB, repository manager.
3    *
4    * Terms of license - http://opensource.org/licenses/apachepl.php
5    */
6   package org.repoweb.model.file.util;
7   /***
8    * Thrown when directory scan failed.
9    */
10  class ScanException extends RuntimeException {
11      public ScanException(String msg) {
12          super(msg);
13      }
14  }