Warning: session_start(): open(/var/lib/php/sessions/sess_5smhv245a5cblqtqer9u8lo4fh, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
asclass DynTestModule > DynPrintLog {
transient bool running;
bool ok;
PersistableThrowable error;
// override me!
void test {}
start-thread {
running = true;
try {
test();
setFields(ok := true, error := null);
printWithNewLineBefore("Successss");
applause();
} catch print e {
infoBox(exceptionToStringShort(e));
setFields(ok := false, error := toPersistableThrowable(e));
} finally {
running = false;
}
}
}