Ignore:
Timestamp:
Aug 31, 2021, 11:35:29 AM (3 years ago)
Author:
Jacob Prud'homme <jafprudhomme@…>
Branches:
ADT, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, pthread-emulation, qualifiedEnum
Children:
a75cd3d
Parents:
3be4078
Message:

Added more information to exceptions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/parseconfig.hfa

    r3be4078 rdcf792a  
    5959
    6060exception Missing_Config_Entries {
    61         unsigned int missing;
     61        unsigned int num_missing;
    6262};
    6363
    6464void ?{}( Missing_Config_Entries & this );
    6565
    66 exception Parse_Failure {};
     66exception Parse_Failure {
     67        * char failed_key;
     68        * char failed_value;
     69};
    6770
    6871void ?{}( Parse_Failure & this );
    6972
    70 exception Validation_Failure {};
     73exception Validation_Failure {
     74        * char failed_key;
     75        * char failed_value;
     76};
    7177
    7278void ?{}( Validation_Failure & this );
Note: See TracChangeset for help on using the changeset viewer.