1 29 30 package com.caucho.quercus.program; 31 32 import com.caucho.quercus.env.Env; 33 import com.caucho.quercus.env.Value; 34 35 38 public class UnsetFunction extends AbstractFunction { 39 private final long _crc; 40 41 public UnsetFunction(long crc) 42 { 43 _crc = crc; 44 } 45 46 public long getCrc() 47 { 48 return _crc; 49 } 50 51 public Value call(Env env, Value []args) 52 { 53 throw new UnsupportedOperationException (); 54 } 55 } 56 57 | Popular Tags |