1<?php
2
3namespace dokuwiki\plugin\struct\meta;
4
5/**
6 * Class AccessTableSerial
7 *
8 * Load and save serial data
9 *
10 * @package dokuwiki\plugin\struct\meta
11 */
12class AccessTableSerial extends AccessTableGlobal
13{
14    public function __construct($table, $pid, $ts = 0, $rid = 0)
15    {
16        if ($ts) {
17            throw new StructException('Requesting wrong data type! Serial data has no timestamp');
18        }
19        parent::__construct($table, $pid, $ts, $rid);
20    }
21}
22