Package org.gradle.openapi.wrappers

Examples of org.gradle.openapi.wrappers.NoLongerSupportedException


/**
* Entry point for the open API. No longer usable but still implemented so that old clients receive a decent error message.
*/
public class DualPaneUIWrapper {
    public DualPaneUIWrapper(DualPaneUIInteractionVersion1 dualPaneUIArguments) {
        throw new NoLongerSupportedException();
    }
View Full Code Here


    public SinglePaneUIWrapper(SinglePaneUIInteractionVersion1 singlePaneUIArguments) {
        super(notSupported(), null);
    }

    private static SettingsNodeVersion1 notSupported() {
        throw new NoLongerSupportedException();
    }
View Full Code Here

/**
* Entry point for the open API. No longer usable but still implemented so that old clients receive a decent error message.
*/
public class GradleRunnerWrapper {
    public GradleRunnerWrapper(File gradleHomeDirectory, GradleRunnerInteractionVersion1 interactionVersion1) {
        throw new NoLongerSupportedException();
    }
View Full Code Here

TOP

Related Classes of org.gradle.openapi.wrappers.NoLongerSupportedException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.