blob: 845ac769964dab9d31076f5523ada2f3d2777daa [file] [log] [blame]
/*
* See LICENSE file in distribution for copyright and licensing information.
*/
package org.yaml.snakeyaml.tokens;
import org.yaml.snakeyaml.error.Mark;
/**
* @see <a href="http://pyyaml.org/wiki/PyYAML">PyYAML</a> for more information
*/
public final class DocumentStartToken extends Token {
public DocumentStartToken(Mark startMark, Mark endMark) {
super(startMark, endMark);
}
@Override
public String getTokenId() {
return "<document start>";
}
}