Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.119
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
iNetty /
node_modules /
sass /
types /
Delete
Unzip
Name
Size
Permission
Date
Action
legacy
[ DIR ]
drwxr-xr-x
2022-04-21 14:33
logger
[ DIR ]
drwxr-xr-x
2022-04-21 14:33
util
[ DIR ]
drwxr-xr-x
2022-04-21 14:33
value
[ DIR ]
drwxr-xr-x
2022-04-21 14:33
compile.d.ts
3.94
KB
-rw-r--r--
2022-04-21 14:29
exception.d.ts
1.09
KB
-rw-r--r--
2022-04-21 14:29
importer.d.ts
12.12
KB
-rw-r--r--
2022-04-21 14:29
index.d.ts
1.98
KB
-rw-r--r--
2022-04-21 14:29
options.d.ts
14.19
KB
-rw-r--r--
2022-04-21 14:30
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 [[sassMessage]]) but * also an indication of where in the Sass stylesheet the error occurred (the * [[span]]) and the Sass stack trace at the point of error (the * [[sassStack]]). */ message: string; /** * A textual description of what went wrong. * * Unlike [[message]], this does *not* include representations of [[span]] or * [[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 [[message]]. */ toString(): string; }