blob: 202abcf405acbe9f0d51b5519897c0770998ea50 [file] [log] [blame]
/*
* See LICENSE file in distribution for copyright and licensing information.
*/
package org.yaml.snakeyaml.serializer;
import org.yaml.snakeyaml.error.YAMLException;
/**
* @see <a href="http://pyyaml.org/wiki/PyYAML">PyYAML</a> for more information
*/
public class SerializerException extends YAMLException {
private static final long serialVersionUID = 2632638197498912433L;
public SerializerException(String message) {
super(message);
}
}