Package net.andydvorak.intellij.lessc.ui.notifier

Examples of net.andydvorak.intellij.lessc.ui.notifier.LessErrorMessage


        handleGenericException(e, srcLessFile, startTime);
    }

    private void handleGenericException(@NotNull final Exception e, @NotNull final LessFile lessFile, final long startTime) {
        final double runTime = getRunTime(startTime);
        notifier.error(new LessErrorMessage(e, lessFile));
        LOG.warn(String.format("Compile failed with an exception in %3.2f seconds:", runTime), e);
    }
View Full Code Here

TOP

Related Classes of net.andydvorak.intellij.lessc.ui.notifier.LessErrorMessage

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.