PrefabSaveException class
Пакет: com.hypixel.hytale.server.core.prefab
Файл: com/hypixel/hytale/server/core/prefab/PrefabSaveException.java
extends: RuntimeException
Поля (2)
| Модификаторы | Тип | Имя |
|---|---|---|
|
ERROR, |
ALREADY_EXISTS |
private |
PrefabSaveException.Type |
type |
Методы (4)
| Модификаторы | Возврат | Сигнатура |
|---|---|---|
|
|
Type Type() |
public |
PrefabSaveException.Type |
getTypePrefabSaveException.Type getType() |
abstract |
|
super super(var2) |
abstract |
|
super super(var2, var3) |
Исходный код
Показать/скрыть
class="kw">package com.hypixel.hytale.server.core.prefab;
class="kw">public class PrefabSaveException class="kw">extends RuntimeException {
class="kw">private PrefabSaveException.Type type;
class="kw">public PrefabSaveException(PrefabSaveException.Type var1) {
this.type = var1;
}
class="kw">public PrefabSaveException(PrefabSaveException.Type var1, String var2) {
super(var2);
this.type = var1;
}
class="kw">public PrefabSaveException(PrefabSaveException.Type var1, String var2, Throwable var3) {
super(var2, var3);
this.type = var1;
}
class="kw">public PrefabSaveException(PrefabSaveException.Type var1, Throwable var2) {
super(var2);
this.type = var1;
}
class="kw">public PrefabSaveException.Type getType() {
class="kw">return this.type;
}
class="kw">public enum Type {
ERROR,
ALREADY_EXISTS;
Type() {
}
}
}