Example usage for io.netty.util.internal EmptyArrays EMPTY_STACK_TRACE

List of usage examples for io.netty.util.internal EmptyArrays EMPTY_STACK_TRACE

Introduction

In this page you can find the example usage for io.netty.util.internal EmptyArrays EMPTY_STACK_TRACE.

Prototype

StackTraceElement[] EMPTY_STACK_TRACE

To view the source code for io.netty.util.internal EmptyArrays EMPTY_STACK_TRACE.

Click Source Link

Usage

From source file:com.github.milenkovicm.kafka.protocol.Error.java

License:Apache License

Error(int value) {
    this.value = value;
    exception = new KafkaException(this);
    exception.setStackTrace(EmptyArrays.EMPTY_STACK_TRACE);
}