mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-07-11 04:17:48 +00:00
DataPacket: more detail in error messages for undefined fields
This commit is contained in:
parent
4975da2aae
commit
1d71f5edb3
@ -139,10 +139,10 @@ abstract class DataPacket extends NetworkBinaryStream{
|
|||||||
}
|
}
|
||||||
|
|
||||||
public function __get($name){
|
public function __get($name){
|
||||||
throw new \Error("Cannot read non-existing field \"$name\"");
|
throw new \Error("Undefined property: " . get_class($this) . "::\$" . $name);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function __set($name, $value){
|
public function __set($name, $value){
|
||||||
throw new \Error("Cannot write non-existing field \"$name\"");
|
throw new \Error("Undefined property: " . get_class($this) . "::\$" . $name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user