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

com.github.malamut2.low.AllocationEvent Maven / Gradle / Ivy

package com.github.malamut2.low;

/**
 * AllocationEvent
 * @author kgb
 */
public class AllocationEvent extends Throwable {
    public AllocationEvent(String className, long size, int numElements) {
        super("Allocated " + className + "[" + numElements + "], total bytes " + size);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy