aboutsummaryrefslogtreecommitdiff
path: root/compatibility/Context.java
diff options
context:
space:
mode:
Diffstat (limited to 'compatibility/Context.java')
-rw-r--r--compatibility/Context.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/compatibility/Context.java b/compatibility/Context.java
index f0fa42c..218fcd7 100644
--- a/compatibility/Context.java
+++ b/compatibility/Context.java
@@ -7,16 +7,16 @@ import java.util.concurrent.*;
public interface Context{
// recently added methods that needs default values for old versions to work
public default long cbtLastModified(){
- throw new IncompatibleCbtVersionException("You need to define method cbtLastModified.");
+ throw new IncompatibleCbtVersionException("You need to override this method.");
};
public default Map<Object,Object> persistentCache(){
- throw new IncompatibleCbtVersionException("You need to define method persistentCache.");
+ throw new IncompatibleCbtVersionException("You need to override this method.");
};
public default Map<Object,Object> transientCache(){
- throw new IncompatibleCbtVersionException("You need to define method transientCache.");
+ throw new IncompatibleCbtVersionException("You need to override this method.");
};
public default long start(){
- throw new IncompatibleCbtVersionException("You need to define method start.");
+ throw new IncompatibleCbtVersionException("You need to override this method.");
};
public default File workingDirectory(){
return projectDirectory();