Skip to content

Commit 83508ff

Browse files
authored
formatting changes
1 parent 6fa7ff2 commit 83508ff

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

fflib/src/classes/fflib_QueryFactory.cls

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -788,15 +788,19 @@ public class fflib_QueryFactory { //No explicit sharing declaration - inherit fr
788788
this.fieldName = fieldName;
789789
this.setMessage( 'Invalid field \''+fieldName+'\' for object \''+objectType+'\'' );
790790
}
791-
}public class InvalidRelationshipException extends Exception{
792-
private String fieldName;
793-
private Schema.SObjectType objectType;
794-
public InvalidRelationshipException(String fieldname, Schema.SObjectType objectType) {
791+
}
792+
793+
public class InvalidRelationshipException extends Exception
794+
{
795+
private String fieldName;
796+
private Schema.SObjectType objectType;
797+
public InvalidRelationshipException(String fieldname, Schema.SObjectType objectType) {
795798
this.fieldname = fieldname;
796-
this.objectType = objectType;
797-
this.setMessage( 'Not able to find related sObjectType for object \''+objectType+'\' denoted by field \''+fieldname+'\'' );
799+
this.objectType = objectType;
800+
this.setMessage( 'Not able to find related sObjectType for object \''+objectType+'\' denoted by field \''+fieldname+'\'' );
801+
}
798802
}
799-
}
803+
800804
public class InvalidFieldSetException extends Exception{}
801805
public class NonReferenceFieldException extends Exception{}
802806
public class InvalidSubqueryRelationshipException extends Exception{}

0 commit comments

Comments
 (0)