forked from sheetjs/sheetjs
SheetJS
5de62a947f
- add BOM to `stream.to_csv` (fixes #1024 h/t @hr5959) - `utils.format_cell` type (h/t @victorj2307) - duktape niggles - demo cleanup
11 lines
300 B
Java
11 lines
300 B
Java
/* xlsx.js (C) 2013-present SheetJS -- http://sheetjs.com */
|
|
/* vim: set ts=2: */
|
|
package com.sheetjs;
|
|
|
|
import java.lang.Exception;
|
|
|
|
public class ObjectNotFoundException extends Exception {
|
|
public ObjectNotFoundException() {}
|
|
public ObjectNotFoundException(String message) { super(message); }
|
|
}
|