Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 548 Bytes

MappingException.md

File metadata and controls

14 lines (9 loc) · 548 Bytes

MappingException

The MappingException class is an exception thrown to indicate an error or issue related to object mapping in a program. This exception is typically used when encountering problems during the mapping process, such as incompatible types or missing mappings.

Description

This class extends RuntimeException and provides a constructor to create instances with a specified detail message.

Constructor

  1. MappingException(String message)
    • Constructs a new MappingException with the specified detail message.