*copyc fsc$condition_code_limits
?? NEWTITLE := 'FS Path Exception Condition Codes : ''FS'' 30 .. 39', EJECT ??
?? FMT (FORMAT := OFF) ??

  CONST
    fsc$min_path_ecc = fsc$min_ecc_validation + 30,
    fsc$max_path_ecc = fsc$min_path_ecc + 9,

    fse$catalogs_do_not_have_cycles = fsc$min_path_ecc + 1,
    {E A cycle reference was specified for catalog "+F", but catalogs do not}
    { have cycles.}

    fse$illegal_alias_name = fsc$min_path_ecc + 2,
    {E +F is not an allowed value for an LFN +P1.}

    fse$local_files_have_no_pw = fsc$min_path_ecc + 3,
    {E A password was specified for file +F, but $LOCAL files cannot have}
    { passwords.}

    fse$local_subcatalog_illegal = fsc$min_path_ecc + 4,
    {E $LOCAL cannot have subcatalogs.}

    fse$system_master_catalog = fsc$min_path_ecc + 7,
    {W The system master catalog was specified.}

    fse$path_substitute_cnt_too_big = fsc$min_path_ecc + 8;
    {E The number of path elements to substitute (+P1) is bigger than}
    { the number of path element (+P2) of the source path +F3.

?? FMT (FORMAT := ON) ??
?? OLDTITLE ??
