Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: org/repoweb/model/file/BadArtifactFileException.java


1   /*
2    * REPOWEB, repository manager.
3    *
4    * Terms of license - http://opensource.org/licenses/apachepl.php
5    */
6   package org.repoweb.model.file;
7   /**
8    * Signal a bad artifact file name.
9    */
10  class BadArtifactFileException extends Exception {
11      BadArtifactFileException(String msg) {
12          super(msg);
13      }
14  
15  
16      BadArtifactFileException(String msg, Throwable cause) {
17          super(msg, cause);
18      }
19  }