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

com.github.marschall.lineparser.UnmapFailedException Maven / Gradle / Ivy

There is a newer version: 0.5.0
Show newest version
package com.github.marschall.lineparser;

import java.io.IOException;

/**
 * Thrown when an unmap() on a mapped byte buffer failed.
 */
public final class UnmapFailedException extends IOException {

  private static final long serialVersionUID = -3797546804890352354L;

  UnmapFailedException(String message, Throwable cause) {
    super(message, cause);
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy