mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
0765cf5955
- Joplin Server: Adds support for sharing a notebook - Desktop: Adds support for sharing a notebook with Joplin Server - Mobile: Adds support for reading and writing to a shared notebook (not possible to share a notebook) - Cli: Adds support for reading and writing to a shared notebook (not possible to share a notebook)
13 lines
258 B
TypeScript
13 lines
258 B
TypeScript
export default class JoplinError extends Error {
|
|
|
|
public code: any = null;
|
|
public details: string = '';
|
|
|
|
public constructor(message: string, code: any = null, details: string = null) {
|
|
super(message);
|
|
this.code = code;
|
|
this.details = details;
|
|
}
|
|
|
|
}
|