Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.217.105
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
node_modules /
sass /
types /
Delete
Unzip
Name
Size
Permission
Date
Action
legacy
[ DIR ]
drwxr-xr-x
2026-06-24 16:16
logger
[ DIR ]
drwxr-xr-x
2026-06-24 16:16
util
[ DIR ]
drwxr-xr-x
2026-06-24 16:16
value
[ DIR ]
drwxr-xr-x
2026-06-24 16:16
compile.d.ts
10.81
KB
-rw-r--r--
2026-06-24 16:16
deprecations.d.ts
8.06
KB
-rw-r--r--
2026-06-24 16:16
exception.d.ts
1.12
KB
-rw-r--r--
2026-06-24 16:16
importer.d.ts
18.63
KB
-rw-r--r--
2026-06-24 16:16
index.d.ts
2.69
KB
-rw-r--r--
2026-06-24 16:16
options.d.ts
16.11
KB
-rw-r--r--
2026-06-24 16:16
Save
Rename
import {SourceSpan} from './logger'; /** * An exception thrown because a Sass compilation failed. * * @category Other */ export class Exception extends Error { private constructor(); /** * A human-friendly representation of the exception. * * Because many tools simply print `Error.message` directly, this includes not * only the textual description of what went wrong (the {@link sassMessage}) * but also an indication of where in the Sass stylesheet the error occurred * (the {@link span}) and the Sass stack trace at the point of error (the * {@link sassStack}). */ message: string; /** * A textual description of what went wrong. * * Unlike {@link message}, this does *not* include representations of {@link * span} or {@link sassStack}. */ readonly sassMessage: string; /** * A human-friendly representation of the Sass stack trace at the point of * error. */ readonly sassStack: string; /** The location the error occurred in the Sass file that triggered it. */ readonly span: SourceSpan; /** Returns the same string as {@link message}. */ toString(): string; }