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

org.testifyproject.tukaani.xz.MemoryLimitException Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
/*
 * MemoryLimitException
 *
 * Author: Lasse Collin 
 *
 * This file has been put into the public domain.
 * You can do whatever you want with this file.
 */

package org.testifyproject.tukaani.xz;

/**
 * Thrown when the memory usage limit given to the XZ org.testifyproject.testifyprojectcompressor
 * would be exceeded.
 * 

* The amount of memory required and the memory usage limit are * included in the error org.testifyproject.testifyprojecttail message in human readable format. */ public class MemoryLimitException extends XZIOException { private static final long serialVersionUID = 3L; private final int memoryNeeded; private final int memoryLimit; /** * Creates a new MemoryLimitException. *

* The amount of memory needed and the memory usage limit are * included in the error org.testifyproject.testifyprojecttail message. * * @param memoryNeeded amount of memory needed as kibibytes (KiB) * @param memoryLimit specified memory usage limit as kibibytes (KiB) */ public MemoryLimitException(int memoryNeeded, int memoryLimit) { super("" + memoryNeeded + " KiB of memory would be needed; limit was " + memoryLimit + " KiB"); this.memoryNeeded = memoryNeeded; this.memoryLimit = memoryLimit; } /** * Gets how much memory is required to org.testifyproject.testifyprojectcompress the data. * * @return amount of memory needed as kibibytes (KiB) */ public int getMemoryNeeded() { return memoryNeeded; } /** * Gets what the memory usage limit was at the time the exception * was created. * * @return memory usage limit as kibibytes (KiB) */ public int getMemoryLimit() { return memoryLimit; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy