Package ca.pgon.st.light6.exception

Examples of ca.pgon.st.light6.exception.StLightException


        // Register the directories
        try {
            fsWatchService = FileSystems.getDefault().newWatchService();
            registerRecursively(basePath);
        } catch (IOException e) {
            throw new StLightException(e);
        }

        // Start the watch thread
        start();
View Full Code Here


    protected void register(Path path) {
        try {
            WatchKey key = path.register(fsWatchService, StandardWatchEventKinds.ENTRY_CREATE, StandardWatchEventKinds.ENTRY_DELETE, StandardWatchEventKinds.ENTRY_MODIFY);
            pathByKey.put(key, path);
        } catch (IOException e) {
            throw new StLightException(e);
        }
    }
View Full Code Here

            // Wait for the next event
            WatchKey key;
            try {
                key = fsWatchService.take();
            } catch (InterruptedException e) {
                throw new StLightException(e);
            }

            // Go through all the events
            for (WatchEvent<?> event : key.pollEvents()) {
                WatchEvent<Path> pathEvent = (WatchEvent<Path>) event;
View Full Code Here

     * @param message
     *            the error message to throw
     */
    public static void assertFalse(boolean actual, String message) {
        if (actual) {
            throw new StLightException(message);
        }
    }
View Full Code Here

     * @param message
     *            the error message to throw
     */
    public static void assertNotNull(Object actual, String message) {
        if (actual == null) {
            throw new StLightException(message);
        }
    }
View Full Code Here

     * @param message
     *            the error message to throw
     */
    public static void assertNull(Object actual, String message) {
        if (actual != null) {
            throw new StLightException(message);
        }
    }
View Full Code Here

     * @param message
     *            the error message to throw
     */
    public static void assertTrue(boolean actual, String message) {
        if (!actual) {
            throw new StLightException(message);
        }
    }
View Full Code Here

     */
    public static String getFileAsString(File file) {
        try {
            return StreamsUtils.consumeAsString(new FileInputStream(file));
        } catch (Exception e) {
            throw new StLightException(e);
        }
    }
View Full Code Here

     */
    public static String getFileAsString(String fileName) {
        try {
            return StreamsUtils.consumeAsString(new FileInputStream(fileName));
        } catch (Exception e) {
            throw new StLightException(e);
        }
    }
View Full Code Here

            process.getOutputStream().close();
            StreamsUtils.flowStreamNonBlocking(process.getInputStream(), System.out);
            StreamsUtils.flowStreamNonBlocking(process.getErrorStream(), System.err);
            process.waitFor();
        } catch (Exception e) {
            throw new StLightException(e);
        }
    }
View Full Code Here

TOP

Related Classes of ca.pgon.st.light6.exception.StLightException

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.