File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed
src/main/java/org/scm4j/deployer/api Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 11package org .scm4j .deployer .api ;
22
3+ import org .scm4j .deployer .api .exceptions .EIncompatibleApiVersion ;
4+
35import java .io .File ;
46import java .util .Map ;
57
68public interface IDownloader {
79
810 Map <String , ? extends IDeploymentContext > getDepCtx ();
911
10- File getProductFile (String coords );
12+ File getProductFile (String coords ) throws EIncompatibleApiVersion ;
1113
1214 IProduct getProduct ();
1315
Original file line number Diff line number Diff line change 1+ package org .scm4j .deployer .api .exceptions ;
2+
3+ public class EIncompatibleApiVersion extends Exception {
4+ private static final long serialVersionUID = 1L ;
5+
6+ public EIncompatibleApiVersion (String message ) {
7+ super (message );
8+ }
9+
10+
11+ }
You can’t perform that action at this time.
0 commit comments