📄 racerexception.java
字号:
package org.mindswap.swoop.racer;
/** This class represents a RACER exception. It occurs a RACER exception when the RACER server
returns a ":error" message. */
public class RacerException extends Exception {
/** The constructor creates a RACER exception from the whole string returned by the racer server. */
public RacerException(String racerError) {
super(racerError);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -