Warning: session_start(): open(/var/lib/php/sessions/sess_b3f444ai29n00eqp7s0n0k8vv8, 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
static short toShort(O o) {
if (o == null) ret (short) 0;
if (o instanceof Number)
ret ((Number) o).shortValue();
if (o instanceof S)
ret toShort(parseLong((S) o));
throw fail("not convertible to short: " + getClassName(o));
}
static int toShort(long l) {
if (l != (short) l) fail("Too large for short: " + l);
ret (short) l;
}