aboutsummaryrefslogtreecommitdiff
path: root/compatibility/Context.java
diff options
context:
space:
mode:
authorJan Christopher Vogt <oss.nsp@cvogt.org>2017-06-16 01:43:32 -0400
committerGitHub <noreply@github.com>2017-06-16 01:43:32 -0400
commit104e3964ea6ff39e74d8abd96eeddc33c9422ce8 (patch)
tree6bfcb212390cc915ce16ca45bb0154ca470c8264 /compatibility/Context.java
parentc8e56f1d45a31d9653fb69829cfac832143526c6 (diff)
parent96e471f914803f00dc646ebb05de24ede79227a4 (diff)
downloadcbt-104e3964ea6ff39e74d8abd96eeddc33c9422ce8.tar.gz
cbt-104e3964ea6ff39e74d8abd96eeddc33c9422ce8.tar.bz2
cbt-104e3964ea6ff39e74d8abd96eeddc33c9422ce8.zip
Merge pull request #525 from cvogt/minor-fix-error-messages
minor fix to error messages
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();