aboutsummaryrefslogtreecommitdiff
path: root/compatibility/BuildInterface.java
diff options
context:
space:
mode:
authorChristopher Vogt <oss.nsp@cvogt.org>2017-06-15 23:47:20 -0400
committerChristopher Vogt <oss.nsp@cvogt.org>2017-06-15 23:51:21 -0400
commit96e471f914803f00dc646ebb05de24ede79227a4 (patch)
tree6bfcb212390cc915ce16ca45bb0154ca470c8264 /compatibility/BuildInterface.java
parentc8e56f1d45a31d9653fb69829cfac832143526c6 (diff)
downloadcbt-96e471f914803f00dc646ebb05de24ede79227a4.tar.gz
cbt-96e471f914803f00dc646ebb05de24ede79227a4.tar.bz2
cbt-96e471f914803f00dc646ebb05de24ede79227a4.zip
minor fix to error messages
Diffstat (limited to 'compatibility/BuildInterface.java')
-rw-r--r--compatibility/BuildInterface.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/compatibility/BuildInterface.java b/compatibility/BuildInterface.java
index c374d5d..0428721 100644
--- a/compatibility/BuildInterface.java
+++ b/compatibility/BuildInterface.java
@@ -13,7 +13,7 @@ public interface BuildInterface extends Dependency{
// deprecated methods, which clients are still allowed to implement, but not required
public default BuildInterface finalBuild(){
- throw new IncompatibleCbtVersionException("You need to define method classLoader.");
+ throw new IncompatibleCbtVersionException("You need to override this method.");
}; // needed to propagage through build builds. Maybe we can get rid of this.
public abstract BuildInterface copy(Context context);
public abstract String scalaVersion();