Package com.jitlogic.zorka.common.util

Examples of com.jitlogic.zorka.common.util.ZorkaRuntimeException


        return sb.toString();
    }

    private void isAllowed(String fn) {
        if (allowed.size() > 0 && !allowed.contains(fn)) {
            throw new ZorkaRuntimeException("Calling '" + fn + "' is not allowed.");
        }
    }
View Full Code Here

TOP

Related Classes of com.jitlogic.zorka.common.util.ZorkaRuntimeException

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.