| | | 1 | | using System; |
| | | 2 | | |
| | | 3 | | namespace FakeXrmEasy |
| | | 4 | | { |
| | | 5 | | public class PullRequestException : Exception |
| | | 6 | | { |
| | | 7 | | public PullRequestException(string sMessage) : |
| | 12 | 8 | | base(string.Format("Exception: {0}. This functionality is not available yet. Please consider contributing to |
| | 12 | 9 | | { |
| | 12 | 10 | | } |
| | | 11 | | |
| | | 12 | | public static PullRequestException NotImplementedOrganizationRequest(Type t) |
| | 6 | 13 | | { |
| | 6 | 14 | | return new PullRequestException(string.Format("The organization request type '{0}' is not yet supported... b |
| | 6 | 15 | | } |
| | | 16 | | |
| | | 17 | | public static PullRequestException PartiallyNotImplementedOrganizationRequest(Type t, string missingImplementati |
| | 0 | 18 | | { |
| | 0 | 19 | | return new PullRequestException(string.Format("The organization request type '{0}' is not yet fully supporte |
| | 0 | 20 | | } |
| | | 21 | | |
| | | 22 | | public static PullRequestException FetchXmlOperatorNotImplemented(string op) |
| | 0 | 23 | | { |
| | 0 | 24 | | return new PullRequestException(string.Format("The fetchxml operator '{0}' is not yet supported... but we DO |
| | 0 | 25 | | } |
| | | 26 | | } |
| | | 27 | | } |