pd.exception

package pd.exception

Type members

Classlikes

class BaseIndexException(msg: String) extends PanDataException

Exception raised when the BaseIndex does not have the expected length.

Exception raised when the BaseIndex does not have the expected length.

Value Params
msg

Message.

Since

0.1.0

class ColumnNotFoundException(msg: String) extends PanDataException

Exception raised when a column is not found.

Exception raised when a column is not found.

Value Params
msg

Message.

Since

0.1.0

class IllegalIndex(msg: String) extends PanDataException

Exception raised when the index position are invalid.

Exception raised when the index position are invalid.

Value Params
msg

Message.

Since

0.1.0

class IllegalOperation(msg: String) extends PanDataException

Exception raised when the operation is not supported for the object.

Exception raised when the operation is not supported for the object.

Value Params
msg

Message.

Since

0.1.0

class IndexBoundsException(ix: Int, length: Int) extends PanDataException

Exception raised when the index position is not in the allowed bounds.

Exception raised when the index position is not in the allowed bounds.

Value Params
ix

Index position.

length

Length of index.

Since

0.1.0

Companion
object

Exception raised when the index position is not in the allowed bounds.

Exception raised when the index position is not in the allowed bounds.

Since

0.1.0

Companion
class

Exception raised when the map function returns null for an element.

Exception raised when the map function returns null for an element.

Since

0.1.0

class MergeIndexException(msg: String) extends PanDataException

Exception raised if the a column index cannot be merged into a DataFrame.

Exception raised if the a column index cannot be merged into a DataFrame.

Value Params
msg

Message.

Since

0.1.0

class PanDataException(msg: String, cause: Throwable) extends RuntimeException

Base exception for the pan-data package.

Base exception for the pan-data package.

Value Params
cause

Underlying exception or null.

msg

Message.

Since

0.1.0

class Requirement(df: DataFrame, _all: Boolean, _strict: Boolean)
class RequirementException(msg: String) extends PanDataException

Exception raised when a Requirement has failed.

Exception raised when a Requirement has failed.

Value Params
msg

Message.

Since

0.1.0

Companion
object

Exception raised when a Requirement has failed.

Exception raised when a Requirement has failed.

Since

0.1.0

Companion
class
class SeriesCastException(msg: String) extends PanDataException

Exception raised when a Series cannot be cast into the required type.

Exception raised when a Series cannot be cast into the required type.

Value Params
msg

Message.

Since

0.1.0

Companion
object

Exception raised when a Series cannot be cast into the required type.

Exception raised when a Series cannot be cast into the required type.

Since

0.1.0

Companion
class
class ThreadFailedException(throwable: Throwable) extends PanDataException

Exception raised when a process thread has failed.

Exception raised when a process thread has failed.

Value Params
throwable

Causing exception.

Since

0.1.0

class ValueCastException(value: Any, target: String) extends PanDataException

Exception raised the value of an element cannot be cast into the required type.

Exception raised the value of an element cannot be cast into the required type.

Value Params
target

Target type.

value

Value found.

Since

0.1.0