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

kz.greetgo.file_storage.errors.TableIsAbsent Maven / Gradle / Ivy

package kz.greetgo.file_storage.errors;

import kz.greetgo.file_storage.impl.TablePosition;

public class TableIsAbsent extends RuntimeException {
  public final TablePosition tablePosition;

//  @Override
//  public synchronized Throwable fillInStackTrace() {
//    return this;
//  }

  public TableIsAbsent(TablePosition tablePosition) {
    this.tablePosition = tablePosition;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy