mirror of
https://github.com/github/codeql.git
synced 2026-04-29 02:35:15 +02:00
19 lines
325 B
Java
19 lines
325 B
Java
package com.esotericsoftware.yamlbeans;
|
|
|
|
import java.io.IOException;
|
|
|
|
public class YamlException extends IOException {
|
|
public YamlException() {
|
|
}
|
|
|
|
public YamlException(String message, Throwable cause) {
|
|
}
|
|
|
|
public YamlException(String message) {
|
|
}
|
|
|
|
public YamlException(Throwable cause) {
|
|
}
|
|
}
|
|
|