My approach is that we can use both, i.e. Exceptions and Errors codes at the same time. 

I'm used to define several types of Exceptions (ex: DataValidationException or ProcessInterruptExcepion) and inside each exception define a more detailed description of each problem.

A Simple Example in Java:

    public class DataValidationException extends Exception {
    
        
        private DataValidation error;
        
        /**
         * 
         */
        DataValidationException(DataValidation dataValidation) {
            super();
            this.error = dataValidation;
        }
    
    
    }
    
    enum DataValidation{
        
        TOO_SMALL(1,"The input is too small"),
        
        TOO_LARGE(2,"The input is too large");
        
      
        private DataValidation(int code, String input) {
            this.input = input;
            this.code = code;
        }
    
        private String input;
        
        private int code;
    
    }


In this way i use Exceptions to define category errors, and error codes to define more detailed info about the problem.