类 UnknownServiceTypeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.github.guang19.exception.UnknownServiceTypeException
-
- 所有已实现的接口:
java.io.Serializable
public class UnknownServiceTypeException extends java.lang.RuntimeException- 作者:
- yangguang
- 另请参阅:
- 序列化表格
-
-
构造器概要
构造器 构造器 说明 UnknownServiceTypeException()Constructs a new runtime exception withnullas its detail message.UnknownServiceTypeException(java.lang.String message)Constructs a new runtime exception with the specified detail message.
-
-
-
构造器详细资料
-
UnknownServiceTypeException
public UnknownServiceTypeException()
Constructs a new runtime exception withnullas its detail message. The cause is not initialized, and may subsequently be initialized by a call toThrowable.initCause(java.lang.Throwable).
-
UnknownServiceTypeException
public UnknownServiceTypeException(java.lang.String message)
Constructs a new runtime exception with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call toThrowable.initCause(java.lang.Throwable).- 参数:
message- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()method.
-
-