All Downloads are FREE. Search and download functionalities are using the official Maven repository.

edu.cmu.sv.utils.Assert Maven / Gradle / Ivy

Go to download

A library that allows rapid prototyping of dialog systems (language understanding, discourse modelling, dialog management, language generation).

There is a newer version: 0.7.0
Show newest version
package edu.cmu.sv.utils;

/**
 * Created by David Cohen on 12/12/14.
 */
public class Assert {
    public static class AssertException extends Exception{}

    public static void verify(boolean x) throws AssertException {
        if (!x)
            throw new AssertException();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy