Example usage for java.lang IllegalAccessError IllegalAccessError

List of usage examples for java.lang IllegalAccessError IllegalAccessError

Introduction

In this page you can find the example usage for java.lang IllegalAccessError IllegalAccessError.

Prototype

public IllegalAccessError() 

Source Link

Document

Constructs an IllegalAccessError with no detail message.

Usage

From source file:Main.java

/**
 * <p>Convenient method to write all objects to log file with client tag.</p>
 *
 * @param data Array of objects to write.
 *///from  w w  w. j  a  v a2  s. c om
public static void writeLog(Object... data) {
    throw new IllegalAccessError();
}

From source file:Main.java

public static byte bytes2byte(byte[] data, int offset) {
    int len = INT8_LEN / INT8_LEN;
    if (data == null || data.length < offset + len) {
        throw new IllegalAccessError();
    }/*from w  ww. j a  va2  s  .  c  om*/
    return data[offset];
}

From source file:Main.java

/**
 * <p>Restores emails from HTML string protected by CloudFlare.</p>
 *
 * @param string HTML string./*from   www.ja  v  a2s  .  c  om*/
 * @return HTML string with restored emails.
 */
public static String restoreCloudFlareProtectedEmails(String string) {
    throw new IllegalAccessError();
}

From source file:Main.java

/**
 * <p>Wait time = {@code interval} - (current time - {@code startTime}).
 * Returns whether thread was interrupted during sleep.</p>
 *
 * @param startTime Time when operation was started.
 * @param interval Minimum time for operation.
 * @return True if thread was interrupted.
 *//* w w  w  .java2  s .c o  m*/
public static boolean sleepMaxTime(long startTime, long interval) {
    throw new IllegalAccessError();
}

From source file:com.insightml.data.AbstractDataset.java

@Override
public Iterable<I> loadValidation() {
    throw new IllegalAccessError();
}

From source file:com.insightml.data.AbstractDataset.java

@Override
public Iterable<I> loadTest(final Integer labelIndex) {
    throw new IllegalAccessError();
}

From source file:com.alta189.deskbin.util.KeyStore.java

public static void store(String key, Object o) {
    if (key == null || key.isEmpty()) {
        throw new IllegalAccessError();
    }// www .  j  a v a2s. com
    instance.storeImpl(key, o);
}

From source file:com.insightml.data.AbstractDataset.java

@Override
public Iterable<I> loadAll() {
    throw new IllegalAccessError();
}

From source file:org.jfrog.hudson.util.PropertyUtils.java

private PropertyUtils() {
    // utility class
    throw new IllegalAccessError();
}

From source file:com.alta189.deskbin.util.KeyStore.java

public static <T> T get(String key) {
    if (key == null || key.isEmpty()) {
        throw new IllegalAccessError();
    }// w ww.j  ava 2  s . co  m
    return instance.getImpl(key);
}