View Javadoc
1   package org.kuali.coeus.propdev.api.s2s;
2   
3   public interface S2sErrorService {
4   
5       /**
6        * Finds an s2s error by key.  The key cannot be blank.
7        * @param key the key.  cannot be null.
8        * @return an s2s error or null if not found.
9        * @throws java.lang.IllegalArgumentException if the key is blank
10       */
11      S2sErrorContract findS2sErrorByKey(String key);
12  }