Esempio n. 1
0
 public Err tooFewArgs(int given) {
   return Err.make("Too few arguments: " + given + " < " + type.params.length);
 }
Esempio n. 2
0
 public void setOutBufferSize(TcpSocket fan, Long v) {
   if (in != null) throw Err.make("Must set outBufSize before connection");
   outBufSize = (v == null) ? 0 : v.intValue();
 }